14 lines
187 B
Go
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}
|
|
}
|