diff --git a/internal/testutil/tag_online.go b/internal/testutil/tag_online.go index 434f36d..ca65808 100644 --- a/internal/testutil/tag_online.go +++ b/internal/testutil/tag_online.go @@ -1,15 +1,12 @@ +//go:build online // +build online package testutil -const OnlineTestEnabled = true - - - +import "git.grassecon.net/urdt/ussd/internal/handlers/server" var AccountService server.AccountServiceInterface - func init() { - AccountService = &server.AccountService{} -} \ No newline at end of file + AccountService = &server.AccountService{} +}