MacFastLookup/main.go

46 lines
922 B
Go
Raw Normal View History

2024-07-15 16:15:43 +08:00
package main
import (
"MacFastLookup/service"
"embed"
"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
app := NewApp()
// Create service
2024-07-23 16:32:49 +08:00
dbService := service.NewSQLiteHelper()
2024-07-16 10:21:51 +08:00
// create update service
updateService := service.NewUpdateService("https://tools.taurusxin.com/macfastlookup/latest_version.txt")
2024-07-15 16:15:43 +08:00
// Create application with options
err := wails.Run(&options.App{
Title: "MacFastLookup",
2024-07-25 09:37:18 +08:00
Width: 540,
Height: 375,
2024-07-15 16:15:43 +08:00
AssetServer: &assetserver.Options{
Assets: assets,
},
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1},
OnStartup: app.startup,
Bind: []interface{}{
app,
2024-07-16 10:21:51 +08:00
dbService,
updateService,
2024-07-15 16:15:43 +08:00
},
})
if err != nil {
println("Error:", err.Error())
}
}