probe/auth/annotation/auth-rpc-service.go
crusader 92d7926d3f ing
2018-04-17 23:11:13 +09:00

18 lines
349 B
Go

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