mirror of
https://github.com/Canner/WrenAI.git
synced 2026-08-31 02:15:37 +08:00
4efb9771dd
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chih-Yu Yeh <chihyu.jimmy.yeh@gmail.com>
How to build
# mac
go build main.go
# windows
env GOOS=windows GOARCH=amd64 go build main.go
How to update dependencies
# Update a single dependency
go get example.com/some/package@latest
# Update all dependencies
go get -u ./...
# Clean up and ensure the module files are correct
go mod tidy
# Verify the updates
go test ./...