commons-go/annotation/service.go
crusader cb7208967b ing
2018-04-10 15:50:39 +09:00

18 lines
314 B
Go

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"`
}