mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-19 13:06:30 +02:00
* feat: add packwiz settings command to allow for changing acceptable versions * Add deduping on the list * Fix typo in comment * Detect out of order list and give the user an option to correct it * Support adding and removing specific versions * Ensure the options aren't nil * Clean up the slice removal boilerplate * Fix usage of slices.Delete
16 lines
313 B
Go
16 lines
313 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/settings"
|
|
_ "github.com/packwiz/packwiz/url"
|
|
_ "github.com/packwiz/packwiz/utils"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|