Files
atom/modules/system/service/service.go
2023-02-04 16:24:08 +08:00

17 lines
220 B
Go

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