mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-05-06 20:29:22 -05: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"`
|
|
}
|