mirror of
https://github.com/h44z/wg-portal.git
synced 2025-08-10 07:22:24 +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"`
|
|
}
|