server/pkg/loafer/web/annotation/rest-handler.go

20 lines
359 B
Go
Raw Normal View History

2019-11-11 15:00:04 +00:00
package annotation
import (
"reflect"
cda "git.loafle.net/commons/di-go/annotation"
)
var RestHandlerAnnotationType = reflect.TypeOf((*RestHandlerAnnotation)(nil))
func init() {
cda.RegisterAnnotation(RestHandlerAnnotationType)
}
type RestHandlerAnnotation struct {
cda.TypeAnnotation `@annotation:"@web:RestHandler"`
Entry string `json:"entry"`
}