mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
6 lines
112 B
Go
6 lines
112 B
Go
|
package config
|
||
|
|
||
|
type AuthConfig struct {
|
||
|
Enabled bool `yaml:"enabled"`
|
||
|
RelayURL string `yaml:"relay_url"`
|
||
|
}
|