17 lines
220 B
Go
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}
|
|
}
|