19 lines
260 B
Go
19 lines
260 B
Go
|
|
package service
|
||
|
|
|
||
|
|
import (
|
||
|
|
"blazing/cool"
|
||
|
|
"blazing/modules/config/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Tower500Service struct {
|
||
|
|
*cool.Service
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewTower500Service() *Tower500Service {
|
||
|
|
return &Tower500Service{
|
||
|
|
&cool.Service{
|
||
|
|
Model: model.New500TowerConfig(),
|
||
|
|
},
|
||
|
|
}
|
||
|
|
}
|