# 下载源码

# 编译使用

  • 电脑安装了Go语言环境
  • Vscode/Goland

# Linux/华为云函数

go mod tidy
set GOOS=linux
set GOARCH=amd64
go build -o handler main.go
zip main.zip handler config.go static

# Windows

go mod tidy
set GOOS=windows
set GOARCH=386
go build -o handler main.go