remove unused variable

This commit is contained in:
Carlosokumu 2024-10-09 14:03:36 +03:00
parent 1d67fb694b
commit 5869324c16
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -1,15 +1,12 @@
//go:build online
// +build online // +build online
package testutil package testutil
const OnlineTestEnabled = true import "git.grassecon.net/urdt/ussd/internal/handlers/server"
var AccountService server.AccountServiceInterface var AccountService server.AccountServiceInterface
func init() { func init() {
AccountService = &server.AccountService{} AccountService = &server.AccountService{}
} }