mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-19 13:06:30 +02:00
* feat: install command for direct downloads * use sha1 instead of sha256 * apply suggestions * feat: parse urls instead of using hasprefix * stop by default and add force flag * Implement various fixes and improvements Co-authored-by: Tricked <72335827+SkyBlockDev@users.noreply.github.com> Co-authored-by: comp500 <comp500@users.noreply.github.com>
15 lines
272 B
Go
15 lines
272 B
Go
package main
|
|
|
|
import (
|
|
// Modules of packwiz
|
|
"github.com/packwiz/packwiz/cmd"
|
|
_ "github.com/packwiz/packwiz/curseforge"
|
|
_ "github.com/packwiz/packwiz/modrinth"
|
|
_ "github.com/packwiz/packwiz/url"
|
|
_ "github.com/packwiz/packwiz/utils"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|