13 lines
204 B
Go
13 lines
204 B
Go
|
package internal
|
||
|
|
||
|
// KeyValue is config key value.
|
||
|
type KeyValue struct {
|
||
|
Key string
|
||
|
Value []byte
|
||
|
Format string
|
||
|
}
|
||
|
|
||
|
// Source is config source.
|
||
|
type Source interface {
|
||
|
Load() ([]*KeyValue, error)
|
||
|
}
|