mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 01:34:06 +00:00
16 lines
358 B
Go
16 lines
358 B
Go
package feature
|
|
|
|
// Flag is named such that checking for a feature uses `feature.Flag.Enabled(feature.ExampleFeature)`.
|
|
var Flag = New()
|
|
|
|
// flag names are written in kebab-case
|
|
const (
|
|
ExampleFeature FlagName = "example-feature"
|
|
)
|
|
|
|
func init() {
|
|
Flag.SetFlags(map[FlagName]FlagDesc{
|
|
ExampleFeature: {Type: Alpha, Description: "just for testing"},
|
|
})
|
|
}
|