f5feefe844
Wails v3 replaces the NPM-only dev entry point. This adds the Go module, Taskfile, build metadata, and a minimal window shell without touching frontend logic. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
246 B
Go
10 lines
246 B
Go
//go:build !ios
|
|
|
|
package main
|
|
|
|
import "github.com/wailsapp/wails/v3/pkg/application"
|
|
|
|
// modifyOptionsForIOS is a no-op on non-iOS platforms
|
|
func modifyOptionsForIOS(opts *application.Options) {
|
|
// No modifications needed for non-iOS platforms
|
|
} |