mirror of
https://github.com/crazy-max/diun.git
synced 2025-05-14 03:12:18 +00:00
7 lines
149 B
Go
7 lines
149 B
Go
package gonfig
|
|
|
|
// Loader is a configuration resource loader.
|
|
type Loader interface {
|
|
// Load populates cfg.
|
|
Load(cfg interface{}) (bool, error)
|
|
}
|