# exchange-api **Repository Path**: ccconnor/exchange-api ## Basic Information - **Project Name**: exchange-api - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-04 - **Last Updated**: 2021-11-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # exchange-api #### 使用方法 见[examples](examples) #### 私有权限的仓库导入方法 - 在`https://github.com/settings/tokens`生成一个token - mac或linux系统编辑`$HOME/.netrc`, 新增下面一行, 替换`USERNAME`和`APIKEY` ``` machine github.com login USERNAME password APIKEY ``` 参考 https://golang.org/doc/faq#git_https ##### 注意 如果使用了goproxy, goproxy有的不支持下载私有仓库, 如果`go get`失败就先取消goproxy, 下载私有库成功后再打开goproxy 如果go>=1.13, 可直接如下设置 ``` go env -w GOPROXY=https://goproxy.cn,direct go env -w GOSUMDB=off ```