Go 依赖管理
初始化 Go 项目
新建项目文件夹
1
2mkdir survey-test
cd survey-test初始化 Go 模块
1
2go mod init github.com/GY23333/survey-test
go: creating new go.mod: module github.com/GY23333/survey-test该步会自动生成 go.mod 文件
1
2
3module github.com/GY23333/survey-test
go 1.23.3如需获取依赖
1
go get -u github.com/gorilla/mux