mirror of
https://github.com/pushbits/cli.git
synced 2025-07-23 11:43:00 +02:00
13 lines
325 B
Go
13 lines
325 B
Go
package settings
|
|
|
|
type Settings struct {
|
|
URL string `long:"url" description:"The URL where the server listens for requests" required:"true"`
|
|
Username string `long:"username" description:"The username for authenticating on the server" required:"true"`
|
|
}
|
|
|
|
type Runnable interface {
|
|
Run(Settings)
|
|
}
|
|
|
|
var Runner Runnable
|