fusenapi/data-transfer/internal/svc/servicecontext.go

20 lines
342 B
Go
Raw Normal View History

2023-06-07 11:47:45 +00:00
package svc
import (
"fusenapi/data-transfer/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),
}
}