Initial commit.

This commit is contained in:
Alec Thomas
2018-04-10 16:51:06 +10:00
commit aa1bf9dcb5
6 changed files with 237 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
package main
import "github.com/alecthomas/kong"
var CLI struct {
Rm struct {
Force bool `help:"Force removal."`
Recursive bool `help:"Recursively remove files."`
Paths []string `help:"Paths to remove." type:"path"`
} `help:"Remove files."`
Ls struct {
Paths []string `help:"Paths to list." type:"path"`
} `help:"List paths."`
}
func main() {
kong.Parse(&CLI)
}