12 lines
188 B
Go
12 lines
188 B
Go
|
package category
|
||
|
|
||
|
import "leafdev.top/Ecosystem/recommender/internal/dao"
|
||
|
|
||
|
type Service struct {
|
||
|
dao *dao.Query
|
||
|
}
|
||
|
|
||
|
func NewService(dao *dao.Query) *Service {
|
||
|
return &Service{dao: dao}
|
||
|
}
|