Files
atom/modules/system/service/service.go
2023-02-09 14:57:32 +08:00

14 lines
187 B
Go

package service
import (
"atom/modules/system/dao"
)
type SystemService struct {
dao dao.Dao
}
func NewSystemService(dao dao.Dao) *SystemService {
return &SystemService{dao: dao}
}