This commit is contained in:
crusader 2018-04-10 15:50:39 +09:00
parent bdab9ab2a7
commit cb7208967b

17
annotation/service.go Normal file
View File

@ -0,0 +1,17 @@
package annotation
import (
"reflect"
cda "git.loafle.net/commons/di-go/annotation"
)
var ServiceAnnotationType = reflect.TypeOf((*ServiceAnnotation)(nil))
func init() {
cda.RegisterAnnotation(ServiceAnnotationType)
}
type ServiceAnnotation struct {
cda.TypeAnnotation `@annotation:"@overflow:Service"`
}