10 lines
250 B
Go
10 lines
250 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`
|
||
|
}
|