mirror of
https://github.com/packwiz/packwiz.git
synced 2025-10-14 15:04:32 +02:00
Initial command system
This commit is contained in:
19
curseforge/curseforge.go
Normal file
19
curseforge/curseforge.go
Normal 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
|
||||
},
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user