├── .gitignore ├── Bitcoin_go.jpg ├── README-zhchs.md ├── README.md ├── README2-zhchs.md ├── README2.md ├── README3-zhchs.md ├── README3.md ├── README4-zhchs.md ├── README4.md ├── README5-zhchs.md ├── README5.md ├── README6-zhchs.md ├── README6.md ├── call_apis └── call_apis.go ├── coin_exchange ├── Makefile └── coin_exchange.go └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Bitcoin_go.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/Bitcoin_go.jpg -------------------------------------------------------------------------------- /README-zhchs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README-zhchs.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README.md -------------------------------------------------------------------------------- /README2-zhchs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README2-zhchs.md -------------------------------------------------------------------------------- /README2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README2.md -------------------------------------------------------------------------------- /README3-zhchs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README3-zhchs.md -------------------------------------------------------------------------------- /README3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README3.md -------------------------------------------------------------------------------- /README4-zhchs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README4-zhchs.md -------------------------------------------------------------------------------- /README4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README4.md -------------------------------------------------------------------------------- /README5-zhchs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README5-zhchs.md -------------------------------------------------------------------------------- /README5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README5.md -------------------------------------------------------------------------------- /README6-zhchs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README6-zhchs.md -------------------------------------------------------------------------------- /README6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/README6.md -------------------------------------------------------------------------------- /call_apis/call_apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/call_apis/call_apis.go -------------------------------------------------------------------------------- /coin_exchange/Makefile: -------------------------------------------------------------------------------- 1 | run: 2 | go run coin_exchange.go 3 | -------------------------------------------------------------------------------- /coin_exchange/coin_exchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/coin_exchange/coin_exchange.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wenewzhang/mixin_labs-go-bot/HEAD/main.go --------------------------------------------------------------------------------