mirror of
https://github.com/DJSundog/wg-portal.git
synced 2024-12-02 11:30:03 -05:00
7 lines
233 B
Go
7 lines
233 B
Go
package wireguard
|
|
|
|
type Config struct {
|
|
DeviceName string `yaml:"device" envconfig:"WG_DEVICE"`
|
|
WireGuardConfig string `yaml:"configFile" envconfig:"WG_CONFIG_FILE"` // optional, if set, updates will be written to this file
|
|
}
|