1
0
mirror of https://github.com/packwiz/packwiz.git synced 2025-05-04 11:36:30 +02:00
packwiz/curseforge/cursedir_other.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")
}