14 lines
195 B
Go
14 lines
195 B
Go
package services
|
|
|
|
import (
|
|
"github.com/liwei1dao/lego/base/cluster"
|
|
)
|
|
|
|
type ServiceBase struct {
|
|
cluster.ClusterService
|
|
}
|
|
|
|
func (this *ServiceBase) InitSys() {
|
|
this.ClusterService.InitSys()
|
|
}
|