di/annotation/component.go
crusader 700f188618 ing
2017-12-06 15:07:44 +09:00

14 lines
324 B
Go

package annotation
import (
"git.loafle.net/commons_go/di"
)
type ComponentAnnotation struct {
Annotation
Name string
InitMethod string // func (receiver interface{}, cr ComponentRegistry) error
DestroyMethod string // func (receiver interface{}, cr ComponentRegistry) error
Scope di.ScopeType
}