go/cmd/app/main.go
google-labs-jules[bot] 31d29711c0 chore: Remove failing openpgp tests
Removes the failing tests for the `crypt/lib/openpgp` package at the user's request.
2025-10-23 12:41:14 +00:00

31 lines
466 B
Go

package main
import (
"embed"
"fmt"
"core"
"github.com/wailsapp/wails/v3/pkg/application"
)
//go:embed all:frontend/dist
var assets embed.FS
func main() {
app := application.New(application.Options{
Services: []application.Service{
application.NewService(core.New(assets)),
},
})
core.Setup(app)
app.Event.On("setup-done", func(e *application.CustomEvent) {
fmt.Println("Setup done!")
})
err := app.Run()
if err != nil {
panic(err)
}
}