server/pkg/loafer/web/annotation/rest-handler.go
2019-11-12 00:00:04 +09:00

20 lines
359 B
Go

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