18 lines
349 B
Go
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"`
|
|
}
|