mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
390 B
24 lines
390 B
package dao
|
|
|
|
import (
|
|
"github.com/rocboss/paopao-ce/internal/core"
|
|
"github.com/rocboss/paopao-ce/pkg/zinc"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
_ core.DataService = (*dataServant)(nil)
|
|
)
|
|
|
|
type dataServant struct {
|
|
engine *gorm.DB
|
|
zinc *zinc.ZincClient
|
|
}
|
|
|
|
func NewDataService(engine *gorm.DB, zinc *zinc.ZincClient) core.DataService {
|
|
return &dataServant{
|
|
engine: engine,
|
|
zinc: zinc,
|
|
}
|
|
}
|