2024-05-13 00:26:44 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Settings struct {
|
2024-05-19 20:42:28 +00:00
|
|
|
Nickname string
|
|
|
|
Protocol string
|
2024-06-02 16:17:12 +00:00
|
|
|
PrivKey *string `json:"privkey",omitempty`
|
|
|
|
Relays []string `json:"relays",omitempty`
|
|
|
|
Server *string `json:"server",omitempty`
|
|
|
|
ApiKey *string `json:"apiKey",omitempty`
|
2024-05-19 20:42:28 +00:00
|
|
|
}
|