Initial commit

This commit is contained in:
2020-02-20 08:31:22 +01:00
commit b7bdd7bbea
17 changed files with 826 additions and 0 deletions

9
internal/command/all.go Normal file
View File

@ -0,0 +1,9 @@
package command
import "github.com/urfave/cli/v2"
func All() []*cli.Command {
return []*cli.Command{
newProjectCommand(),
}
}