Skip to content

Commit 2e23d12

Browse files
committed
Remove help command for now
1 parent 45d9074 commit 2e23d12

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

main.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package main
22

33
import (
4-
"errors"
54
"flag"
65
"fmt"
76
"os"
@@ -22,7 +21,6 @@ Usage:
2221
2322
Available commands:
2423
run Run all modules, or a particular module
25-
help Help about a specific module
2624
version Prints the version number
2725
2826
Cheatsheet:
@@ -52,8 +50,6 @@ func main() {
5250
case "run":
5351
run.Version = Version
5452
err = run.RunCmd(args)
55-
case "help":
56-
err = errors.New("TODO")
5753
case "version":
5854
fmt.Printf("flightsim version %s\n", Version)
5955
return

0 commit comments

Comments
 (0)