fusenapi/home-user-auth/internal/svc/servicecontext.go

20 lines
343 B
Go
Raw Normal View History

2023-05-31 10:33:02 +00:00
package svc
import (
"fusenapi/home-user-auth/internal/config"
"github.com/zeromicro/go-zero/core/stores/sqlx"
2023-05-31 10:33:02 +00:00
)
type ServiceContext struct {
2023-06-05 09:56:55 +00:00
Config config.Config
MysqlConn sqlx.SqlConn
2023-05-31 10:33:02 +00:00
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
2023-06-05 09:56:55 +00:00
Config: c,
MysqlConn: sqlx.NewMysql(c.SourceMysql),
2023-05-31 10:33:02 +00:00
}
}