1
0
Fork 0
mirror of https://github.com/m1k1o/neko.git synced 2025-07-26 13:09:17 +02:00
neko/internal/config/config.go
Miroslav Šedivý 5d906e0a8b major refactor.
2020-11-01 16:09:48 +01:00

8 lines
114 B
Go

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