Files
jukebox_maker/internal/dialog/pickfolder_other.go

10 lines
181 B
Go

//go:build !darwin && !windows
package dialog
import "fmt"
func PickFolder() (string, error) {
return "", fmt.Errorf("native folder picker is not supported on this platform")
}