mirror of
https://github.com/gotify/cli.git
synced 2024-01-28 15:20:39 +03:00
9 lines
199 B
Go
9 lines
199 B
Go
package config
|
|
|
|
type Config struct {
|
|
Token string `json:"token"`
|
|
URL string `json:"url"`
|
|
DefaultPriority int `json:"defaultPriority"`
|
|
FromLocation string `json:"-"`
|
|
}
|