package application import "leafdev.top/Ecosystem/recommender/internal/dao" type Service struct { dao *dao.Query } func NewService(dao *dao.Query) *Service { return &Service{dao: dao} }