octolab / config

🎛 Configuration toolkit.
https://go.octolab.org/toolkit/config
MIT License
0 stars 0 forks source link

input: File type for spf13/pflag integration #11

Open kamilsk opened 2 years ago

kamilsk commented 2 years ago

Motivation: extend flag types.

Interface

type Value interface {
    String() string
    Set(string) error
    Type() string
}

See #4.