10 lines
181 B
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")
|
|
}
|