14 lines
200 B
Go
14 lines
200 B
Go
package docker_monitor
|
|
|
|
type Config struct {
|
|
Path string
|
|
RuleStrategy RuleStrategy
|
|
}
|
|
|
|
type RuleStrategy int8
|
|
|
|
const (
|
|
RuleStrategyRebuild RuleStrategy = iota + 1
|
|
RuleStrategyIncremental
|
|
)
|