1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Add help text to the Transmission settings file

This commit is contained in:
Chris Cummer 2019-07-04 06:23:33 -07:00
parent 3ee4980412
commit 007c1773a8

View File

@ -9,12 +9,12 @@ import (
type Settings struct {
common *cfg.Common
host string
https bool
password string
port int
url string
username string
host string `help:"The address of the machine the Transmission daemon is running on"`
https bool `help:"Whether or not to connect to the host via HTTPS"`
password string `help:"The password for the transmission user"`
port int `help:"The port to connect to the Transmission daemon on"`
url string `help:"The RPC URI that the daemon is accessible at"`
username string `help:"The username for the transmission user"`
}
const (