mirror of
https://github.com/h44z/wg-portal.git
synced 2025-04-19 08:55:12 +00:00
13 lines
305 B
Go
13 lines
305 B
Go
|
package model
|
||
|
|
||
|
type Error struct {
|
||
|
Code int `json:"Code"`
|
||
|
Message string `json:"Message"`
|
||
|
}
|
||
|
|
||
|
type Settings struct {
|
||
|
MailLinkOnly bool `json:"MailLinkOnly"`
|
||
|
PersistentConfigSupported bool `json:"PersistentConfigSupported"`
|
||
|
SelfProvisioning bool `json:"SelfProvisioning"`
|
||
|
}
|