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 {
|
|
|
|
Names []string
|
|
|
|
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
|
|
|
}
|