di/annotation/component.go
crusader 274c05cbf0 ing
2017-12-05 19:02:41 +09:00

13 lines
314 B
Go

package annotation
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
}