This commit is contained in:
leokun
2026-06-30 10:38:52 +08:00
commit c083be5ec2
312 changed files with 146628 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
package main
import (
"cursor/internal/app"
"cursor/internal/logger"
"embed"
"os"
)
//go:embed all:frontend/dist
var assets embed.FS
//go:embed build/appicon.png
var appIcon []byte
//go:embed build/tray.png
var trayIcon []byte
func main() {
logger.Init()
if err := app.Run(app.EmbeddedResources{
Assets: assets,
AppIcon: appIcon,
TrayIcon: trayIcon,
}); err != nil {
logger.Errorf("app run failed: %v", err)
os.Exit(1)
}
}