mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-12 01:16:30 +02:00
18 lines
392 B
Go
18 lines
392 B
Go
package main
|
|
|
|
import (
|
|
// Modules of packwiz
|
|
"github.com/packwiz/packwiz/cmd"
|
|
_ "github.com/packwiz/packwiz/curseforge"
|
|
_ "github.com/packwiz/packwiz/github"
|
|
_ "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()
|
|
}
|