move account service tags switch to test tags package

This commit is contained in:
Carlosokumu 2024-10-21 16:44:02 +03:00
parent 14455f65cb
commit 3af943f77c
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953
2 changed files with 0 additions and 20 deletions

View File

@ -1,11 +0,0 @@
// +build !online
package testutil
import (
"git.grassecon.net/urdt/ussd/internal/handlers/server"
)
var (
AccountService server.AccountServiceInterface = &server.TestAccountService{}
)

View File

@ -1,9 +0,0 @@
// +build online
package testutil
import "git.grassecon.net/urdt/ussd/internal/handlers/server"
var (
AccountService server.AccountServiceInterface
)