feat(build): 更新构建脚本添加资源打包和proto编译 更新build.bat脚本,添加proto文件编译和资源打包功能,调整资源打包顺序。 BREAKING CHANGE: 构建流程发生变化,需要重新生成proto文件和打包资源。 --- refactor(xmlres): 使用gres替换gfile读取资源文件 将xmlres模块中文件读取方式从gfile.GetBytes改为gres.GetContent, 使
19 lines
248 B
Go
19 lines
248 B
Go
package service
|
|
|
|
import (
|
|
"blazing/cool"
|
|
"blazing/modules/config/model"
|
|
)
|
|
|
|
type ServerService struct {
|
|
*cool.Service
|
|
}
|
|
|
|
func NewServerService() *ServerService {
|
|
return &ServerService{
|
|
&cool.Service{
|
|
Model: model.NewServerList(),
|
|
},
|
|
}
|
|
}
|