mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-19 21:16:30 +02:00
Was this really necessary? No Are there more important things to implement? Yes Do I care? No
13 lines
195 B
Go
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()
|
|
}
|