13 lines
280 B
Go
13 lines
280 B
Go
|
// +build !online
|
||
|
|
||
|
package testtag
|
||
|
|
||
|
import (
|
||
|
"git.grassecon.net/grassrootseconomics/sarafu-api/remote"
|
||
|
accountservice "git.grassecon.net/grassrootseconomics/sarafu-api/testutil/testservice"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
AccountService remote.AccountService = &accountservice.TestAccountService{}
|
||
|
)
|