fusenapi/server/data-transfer/internal/svc/servicecontext.go
laodaming a9e0f6b98e fix
2023-06-08 11:03:20 +08:00

20 lines
359 B
Go

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