修复 引用的错误

This commit is contained in:
eson 2023-07-28 12:17:08 +08:00
parent 66808fc735
commit 11cc2547c9

View File

@ -35,7 +35,7 @@ func NewServiceContext(c config.Config) *ServiceContext {
MysqlConn: conn, MysqlConn: conn,
SharedState: StateServer, SharedState: StateServer,
AllModels: gmodel.NewAllModels(initalize.InitMysql(c.SourceMysql)), AllModels: gmodel.NewAllModels(initalize.InitMysql(c.SourceMysql)),
TokenManger: auth.NewConfirmationLink[auth.RegisterToken]([]byte(c.Auth.AccessSecret), "http://localhost:9900/api/auth/oauth2/register"), TokenManger: auth.NewConfirmationLink[auth.RegisterToken](c.Auth.AccessSecret, "http://localhost:9900/api/auth/oauth2/register"),
} }
} }