9 lines
114 B
Go
Raw Normal View History

2020-01-13 08:05:38 +00:00
package config
import "github.com/spf13/cobra"
type Config interface {
Init(cmd *cobra.Command) error
Set()
2020-01-18 23:30:09 +00:00
}