Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wizardaei/gomoon-event-tracker
https://github.com/wizardaei/gomoon-event-tracker
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wizardaei/gomoon-event-tracker
- Owner: wizardAEI
- Created: 2024-07-15T13:08:39.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-09-14T07:25:26.000Z (4 months ago)
- Last Synced: 2024-09-15T18:18:03.064Z (4 months ago)
- Language: Go
- Size: 3.58 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# MAC
使用 gvm 安装不同架构的 go
arm64 架构:
安装 1.22.5 ( `gvm install go1.22.5` )
```bash
gvm use --default go1.22.5
go build
```amd64 架构:
使用 Rosetta 启动 amd 终端安装 go 1.22.4 (安装amd版本的go `gvm install go1.22.4 -B`)
更改 go 版本 ( `gvm use go1.22.4` )
更改 go.mod 文件中的 go 版本为 1.22.4
```bash
go build -o eventTracker_x64 main.go
```# Win
`go build -o eventTracker.exe main.go`