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