19 lines
280 B
Go
Raw Normal View History

2025-05-31 16:14:34 +08:00
package impl_test
import (
"context"
"122.51.31.227/go-course/go18/devcloud/mcenter/apps/token"
"122.51.31.227/go-course/go18/devcloud/mcenter/test"
)
var (
svc token.Service
ctx = context.Background()
)
func init() {
2025-06-08 15:11:14 +08:00
test.DevelopmentSetUp()
2025-05-31 16:14:34 +08:00
svc = token.GetService()
}