18 lines
293 B
Go
18 lines
293 B
Go
package service
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
cda "git.loafle.net/commons_go/di/annotation"
|
|
cdr "git.loafle.net/commons_go/di/registry"
|
|
)
|
|
|
|
func init() {
|
|
cdr.RegisterType(reflect.TypeOf((*ConfigService)(nil)))
|
|
|
|
}
|
|
|
|
type ConfigService struct {
|
|
cda.TypeAnnotation `annotation:"@overFlow:Service()"`
|
|
}
|