mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-07 20:20:58 -06:00
11 lines
192 B
Go
11 lines
192 B
Go
package core
|
|
|
|
type Config struct {
|
|
User UserConfig `koanf:"user"`
|
|
}
|
|
|
|
type UserConfig struct {
|
|
BaseDir string `koanf:"basedir"`
|
|
Permisison UserPermissions `koanf:"permission"`
|
|
}
|