mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-29 18:36:22 +02:00
8 lines
114 B
Go
8 lines
114 B
Go
package config
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
type Config interface {
|
|
Init(cmd *cobra.Command) error
|
|
Set()
|
|
}
|