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

21 lines
388 B
Go

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