摘要:
package main import ( "bytes" "compress/gzip" "encoding/json" "fmt" "io" "log" ) // User 结构体定义 type User struct { ID int `json:"id"` Name string `json 阅读全文
摘要:
编译 Go 应用程序 go build -ldflags="-s -w" -o myapp.exe . 使用 UPX 压缩可执行文件(window下载并设置环境变量) upx --best --lzma myapp.exe 可从10M压缩到1M @echo off REM Set Go enviro 阅读全文