fusenapi/home-user-auth/internal/svc/servicecontext.go
2023-06-05 17:56:55 +08:00

20 lines
343 B
Go

package svc
import (
"fusenapi/home-user-auth/internal/config"
"github.com/zeromicro/go-zero/core/stores/sqlx"
)
type ServiceContext struct {
Config config.Config
MysqlConn sqlx.SqlConn
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
MysqlConn: sqlx.NewMysql(c.SourceMysql),
}
}