mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-17 20:26:31 +02:00
* Add base and loader command * Support updating to latest * Support explicit fabric versions * Support explicit Forge version * Support quilt * Add support for updating Minecraft * Add support for Forge recommended * Fix Forge version sorting * Various fixes * Add documentation to the use * More suggestions
17 lines
353 B
Go
17 lines
353 B
Go
package main
|
|
|
|
import (
|
|
// Modules of packwiz
|
|
"github.com/packwiz/packwiz/cmd"
|
|
_ "github.com/packwiz/packwiz/curseforge"
|
|
_ "github.com/packwiz/packwiz/migrate"
|
|
_ "github.com/packwiz/packwiz/modrinth"
|
|
_ "github.com/packwiz/packwiz/settings"
|
|
_ "github.com/packwiz/packwiz/url"
|
|
_ "github.com/packwiz/packwiz/utils"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|