commons-go/annotation/rpc-service.go
crusader 3525f1d3c2 ing
2018-04-11 17:44:31 +09:00

18 lines
329 B
Go

package annotation
import (
"reflect"
cda "git.loafle.net/commons/di-go/annotation"
)
var RPCServiceAnnotationType = reflect.TypeOf((*RPCServiceAnnotation)(nil))
func init() {
cda.RegisterAnnotation(RPCServiceAnnotationType)
}
type RPCServiceAnnotation struct {
cda.TypeAnnotation `@annotation:"@overflow:RPCService"`
}