123456789101112131415161718192021 |
- package service
- type Service interface {
-
- HealthCheck() bool
- }
- type CommonService struct {
- }
- func (s *CommonService) HealthCheck() bool {
- return true
- }
- func NewCommonService() *CommonService {
- return &CommonService{}
- }
|