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