overflow_probes/service/ProbeService.go
crusader f073163bf7 ing
2018-03-15 22:52:23 +09:00

27 lines
453 B
Go

package service
import (
"reflect"
cda "git.loafle.net/commons_go/di/annotation"
cdr "git.loafle.net/commons_go/di/registry"
)
func init() {
cdr.RegisterType(reflect.TypeOf((*ProbeService)(nil)))
}
type ProbeService struct {
cda.TypeAnnotation `annotation:"@overFlow:Service()"`
}
func (ps *ProbeService) Start() error {
return nil
}
func (ps *ProbeService) Stop() error {
return nil
}
func (ps *ProbeService) Update() error {
return nil
}