Add ability to set a default priority for cli client, fix #2

This commit is contained in:
Avner Cohen
2020-05-21 10:47:13 +03:00
committed by Jannis Mattheis
parent facfb9b517
commit a38bf37dcd
5 changed files with 31 additions and 6 deletions

View File

@@ -1,7 +1,8 @@
package config
type Config struct {
Token string `json:"token"`
URL string `json:"url"`
FromLocation string `json:"-"`
Token string `json:"token"`
URL string `json:"url"`
DefaultPriority int `json:"defaultPriority"`
FromLocation string `json:"-"`
}