2 Star 10 Fork 2

git-jiadong/wechatDataBackup

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github/workflows
build
frontend/dist
pkg
res
.gitignore
LICENSE
README.md
app.go
changelog.md
go.mod
main.go
wails.json
克隆/下载
main.go 1.28 KB
一键复制 编辑 原始数据 按行查看 历史
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"
)
//go:embed all:frontend/dist
var assets embed.FS
func init() {
// log output format
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()
multiWriter := io.MultiWriter(logJack, os.Stdout)
// 设置日志输出目标为文件
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,
},
BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1},
OnStartup: app.startup,
OnBeforeClose: app.beforeClose,
Bind: []interface{}{
app,
},
Frameless: true,
})
if err != nil {
println("Error:", err.Error())
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/git-jiadong/wechatDataBackup.git
git@gitee.com:git-jiadong/wechatDataBackup.git
git-jiadong
wechatDataBackup
wechatDataBackup
main

搜索帮助