Documentation ¶ Index ¶ type Factory func NewStrategyFactory() Factory func (sf Factory) Make(config conf.IConfig, files []string, paths []string, exclusions []string, ...) (IStrategy, error) type IFactory type IStrategy Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Factory ¶ type Factory struct{} func NewStrategyFactory ¶ func NewStrategyFactory() Factory func (Factory) Make ¶ func (sf Factory) Make(config conf.IConfig, files []string, paths []string, exclusions []string, finder finder.IFinder, ctx cgexec.IContext) (IStrategy, error) type IFactory ¶ type IFactory interface { Make(config conf.IConfig, files []string, paths []string, exclusions []string, finder finder.IFinder, ctx cgexec.IContext) (IStrategy, error) } type IStrategy ¶ type IStrategy interface { Invoke() ([]job.IJob, error) } Source Files ¶ View all Source files strategy.go strategy_factory.go Click to show internal directories. Click to hide internal directories.