12 lines
348 B
Go
12 lines
348 B
Go
package models
|
|
|
|
type Settings struct {
|
|
Nickname string
|
|
Protocol string
|
|
PrivKey *string `json:"privkey",omitempty`
|
|
Relays []string `json:"relays",omitempty`
|
|
Server *string `json:"server",omitempty`
|
|
ApiKey *string `json:"apiKey",omitempty`
|
|
Handle *string `json:"handle",omitempty`
|
|
Password *string `json:"password",omitempty`
|
|
}
|