Files
jukebox_maker/internal/dialog/pickfolder_other.go
T
2026-04-24 11:54:33 +03:00

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")
}