mirror of
https://github.com/packwiz/packwiz.git
synced 2025-04-19 13:06:30 +02:00
11 lines
192 B
Go
11 lines
192 B
Go
//go:build !windows
|
|
|
|
package curseforge
|
|
|
|
import "errors"
|
|
|
|
// Stub version, so that getCurseDir exists
|
|
func getCurseDir() (string, error) {
|
|
return "", errors.New("not compiled for windows")
|
|
}
|