forked from grassrootseconomics/visedriver
13 lines
298 B
Go
13 lines
298 B
Go
// +build !online
|
|
|
|
package testtag
|
|
|
|
import (
|
|
"git.grassecon.net/grassrootseconomics/visedriver/remote"
|
|
accountservice "git.grassecon.net/grassrootseconomics/visedriver/internal/testutil/testservice"
|
|
)
|
|
|
|
var (
|
|
AccountService remote.AccountServiceInterface = &accountservice.TestAccountService{}
|
|
)
|