19 lines
337 B
Go
19 lines
337 B
Go
package svc
|
|
|
|
import (
|
|
"fusenapi/product/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.DataSource),
|
|
}
|
|
}
|