mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:29:53 +08:00
10 lines
163 B
Go
10 lines
163 B
Go
package appoptions
|
|
|
|
// Default options for creating the App
|
|
var Default = &Options{
|
|
Title: "My Wails App",
|
|
Width: 1024,
|
|
Height: 768,
|
|
DevTools: true,
|
|
}
|