neko/internal/config/config.go

9 lines
114 B
Go
Raw Normal View History

package config
import "github.com/spf13/cobra"
type Config interface {
Init(cmd *cobra.Command) error
Set()
}