We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45d9074 commit 2e23d12Copy full SHA for 2e23d12
main.go
@@ -1,7 +1,6 @@
1
package main
2
3
import (
4
- "errors"
5
"flag"
6
"fmt"
7
"os"
@@ -22,7 +21,6 @@ Usage:
22
21
23
Available commands:
24
run Run all modules, or a particular module
25
- help Help about a specific module
26
version Prints the version number
27
28
Cheatsheet:
@@ -52,8 +50,6 @@ func main() {
52
50
case "run":
53
51
run.Version = Version
54
err = run.RunCmd(args)
55
- case "help":
56
- err = errors.New("TODO")
57
case "version":
58
fmt.Printf("flightsim version %s\n", Version)
59
return
0 commit comments