wechatDataBackup/main.go

65 lines
1.3 KiB
Go
Raw Normal View History

2024-08-26 22:56:29 +08:00
package main
import (
"embed"
"io"
"log"
"os"
"github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/options"
"github.com/wailsapp/wails/v2/pkg/options/assetserver"
"gopkg.in/natefinch/lumberjack.v2"
2024-08-26 22:56:29 +08:00
)
//go:embed all:frontend/dist
var assets embed.FS
func init() {
// log output format
2024-08-26 22:56:29 +08:00
log.SetFlags(log.Ldate | log.Lmicroseconds | log.Lshortfile)
}
func main() {
logJack := &lumberjack.Logger{
Filename: "./app.log",
MaxSize: 5,
MaxBackups: 1,
MaxAge: 30,
Compress: false,
}
defer logJack.Close()
2024-08-26 22:56:29 +08:00
multiWriter := io.MultiWriter(logJack, os.Stdout)
2024-08-26 22:56:29 +08:00
// 设置日志输出目标为文件
log.SetOutput(multiWriter)
log.Println("====================== wechatDataBackup ======================")
// Create an instance of the app structure
app := NewApp()
// Create application with options
err := wails.Run(&options.App{
Title: "wechatDataBackup",
MinWidth: 800,
MinHeight: 600,
Width: 1024,
Height: 768,
AssetServer: &assetserver.Options{
Assets: assets,
Handler: app.FLoader,
2024-08-26 22:56:29 +08:00
},
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1},
OnStartup: app.startup,
OnBeforeClose: app.beforeClose,
OnShutdown: app.shutdown,
2024-08-26 22:56:29 +08:00
Bind: []interface{}{
app,
},
Frameless: true,
})
if err != nil {
log.Println("Error:", err.Error())
2024-08-26 22:56:29 +08:00
}
}