Files
wg-portal/internal/app/api/v0/model/models.go
T

14 lines
359 B
Go
Raw Normal View History

2023-08-04 13:34:18 +02:00
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"`
ApiAdminOnly bool `json:"ApiAdminOnly"`
2023-08-04 13:34:18 +02:00
}