RWKV-Runner/main.go

40 lines
687 B
Go
Raw Normal View History

2023-05-03 23:38:54 +08:00
package main
import (
"embed"
2023-05-05 23:23:34 +08:00
backend "rwkv-runner/backend-golang"
2023-05-03 23:38:54 +08:00
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
)
//go:embed all:frontend/dist
var assets embed.FS
func main() {
// Create an instance of the app structure
2023-05-05 23:23:34 +08:00
app := backend.NewApp()
2023-05-03 23:38:54 +08:00
// Create application with options
err := wails.Run(&options.App{
2023-05-04 23:55:24 +08:00
Title: "RWKV-Runner",
Width: 1024,
Height: 640,
2023-05-06 20:17:39 +08:00
MinWidth: 375,
2023-05-04 23:55:24 +08:00
MinHeight: 640,
2023-05-03 23:38:54 +08:00
AssetServer: &assetserver.Options{
Assets: assets,
},
2023-05-05 23:23:34 +08:00
OnStartup: app.OnStartup,
2023-05-13 20:15:18 +08:00
Bind: []any{
2023-05-03 23:38:54 +08:00
app,
},
})
if err != nil {
println("Error:", err.Error())
}
}