-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
50 lines (43 loc) · 1.02 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"context"
"cupid-connector/backend/application"
"cupid-connector/backend/tray"
"embed"
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/logger"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
)
//go:embed frontend/dist
var assets embed.FS
func main() {
// Create an instance of the app structure
app := application.NewApp()
tray.TrayApp = tray.NewTray()
// Create application with options
err := wails.Run(&options.App{
Title: "Cupid Connector",
Width: 600,
Height: 650,
AssetServer: &assetserver.Options{
Assets: assets,
},
LogLevel: logger.ERROR,
BackgroundColour: &options.RGBA{R: 0, G: 0, B: 0, A: 1},
OnStartup: func(ctx context.Context) {
app.Startup(ctx)
// 启动托盘(必须在最后启动)
tray.TrayApp.Startup(ctx)
},
Bind: []interface{}{
app,
tray.TrayApp,
},
DisableResize: true,
Frameless: true,
})
if err != nil {
println("Error:", err.Error())
}
}