probe/service/ContainerService.go

25 lines
467 B
Go
Raw Normal View History

2018-04-13 11:59:46 +00:00
package service
import (
"reflect"
cda "git.loafle.net/commons/di-go/annotation"
cdr "git.loafle.net/commons/di-go/registry"
_ "git.loafle.net/overflow/commons-go/core/annotation"
)
var ContainerServiceType = reflect.TypeOf((*ContainerService)(nil))
func init() {
cdr.RegisterType(ContainerServiceType)
}
type ContainerService struct {
cda.TypeAnnotation `annotation:"@overflow:RPCService()"`
}
func (cs *ContainerService) Accept() error {
return nil
}