di/annotation/component.go

14 lines
324 B
Go
Raw Normal View History

2017-12-03 13:54:09 +00:00
package annotation
2017-12-05 10:02:41 +00:00
import (
"git.loafle.net/commons_go/di"
)
type ComponentAnnotation struct {
2017-12-06 06:07:44 +00:00
Annotation
Name string
2017-12-05 10:02:41 +00:00
InitMethod string // func (receiver interface{}, cr ComponentRegistry) error
DestroyMethod string // func (receiver interface{}, cr ComponentRegistry) error
Scope di.ScopeType
2017-12-03 13:54:09 +00:00
}