blob: e9e2f71196231b03ee0a56ce0f3751f752446e5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package main
import "fmt"
func printUsage() {
fmt.Println("Usage: cetus <command> <service> [<flags>]")
fmt.Println("\nCommands: ")
fmt.Println(" set Set the background")
fmt.Println(" fetch Fetch the response only")
fmt.Println(" help Print help")
fmt.Println(" version Print Cetus version")
fmt.Println("\nServices: ")
fmt.Println(" apod NASA Astronomy Picture of the Day")
fmt.Println(" bpod Bing Photo of the Day")
}
|