Files
2026-05-13 20:40:14 +08:00

23 lines
332 B
Go

package main
import (
"embed"
"github.com/wailsapp/wails/v2"
)
//go:embed all:frontend/dist
var assets embed.FS
func main() {
// Create an instance of the app structure
app := NewApp()
// Create application with options
err := wails.Run(newAppOptions(app, assets))
if err != nil {
println("Error:", err.Error())
}
}