mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-19 21:16:30 +02:00
Now supports Curse/Twitch instance names and folders containing minecraftinstance.json or manifest.json
11 lines
191 B
Go
11 lines
191 B
Go
// +build !windows
|
|
|
|
package curseforge
|
|
|
|
import "errors"
|
|
|
|
// Stub version, so that getCurseDir exists
|
|
func getCurseDir() (string, error) {
|
|
return "", errors.New("not compiled for windows")
|
|
}
|