packwiz/main.go
comp500 7ecf2cd215 Add bash/powershell/zsh completions
Was this really necessary? No
Are there more important things to implement? Yes
Do I care? No
2019-09-18 22:58:46 +01:00

13 lines
195 B
Go

package main
import (
// Modules of packwiz
"github.com/comp500/packwiz/cmd"
_ "github.com/comp500/packwiz/curseforge"
_ "github.com/comp500/packwiz/utils"
)
func main() {
cmd.Execute()
}