19 lines
278 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() {
test.DevelopmentSet()
svc = token.GetService()
}