Save and replace profiles via system file dialog; buttons after Best; prefs unchanged on import. Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
310 B
Go
14 lines
310 B
Go
//go:build !windows && !darwin
|
|
|
|
package filedialog
|
|
|
|
// SaveJSON is not available on this platform.
|
|
func SaveJSON(title, defaultName string) (string, error) {
|
|
return "", ErrUnsupported
|
|
}
|
|
|
|
// OpenJSON is not available on this platform.
|
|
func OpenJSON(title string) (string, error) {
|
|
return "", ErrUnsupported
|
|
}
|