remove unused variable

This commit is contained in:
2024-10-09 14:03:36 +03:00
parent 1d67fb694b
commit 5869324c16

View File

@@ -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{}
}
AccountService = &server.AccountService{}
}