Files
bl/modules/demo/service/demo_test.go
2025-06-20 17:13:51 +08:00

22 lines
361 B
Go

package service
import (
"github.com/cool-team-official/cool-admin-go/cool"
)
type DemoTestService struct {
*cool.Service
}
func NewDemoTestService() *DemoTestService {
return &DemoTestService{
&cool.Service{},
}
}
func (s *DemoTestService) GetDemoTestList() (interface{}, error) {
// gsvc.SetRegistry(etcd.New(`127.0.0.1:2379`))
return nil, nil
}