Initial command system

This commit is contained in:
comp500
2019-03-17 15:04:00 +00:00
parent 63df728f42
commit a531e36713
9 changed files with 170 additions and 0 deletions

19
curseforge/curseforge.go Normal file
View File

@@ -0,0 +1,19 @@
package curseforge
import (
"fmt"
"github.com/comp500/packwiz/core"
"github.com/urfave/cli"
)
func init() {
core.Commands = append(core.Commands, cli.Command{
Name: "curseforge",
Usage: "Manage curseforge-based mods",
Action: func(c *cli.Context) error {
fmt.Println("Not implemented yet!")
return nil
},
})
}