├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.MD ├── LICENSE ├── README.md ├── client.go ├── docs └── d2client_screen.png └── go.mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/client.go -------------------------------------------------------------------------------- /docs/d2client_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokka/d2client/HEAD/docs/d2client_screen.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/nokka/d2client 2 | 3 | go 1.13 4 | --------------------------------------------------------------------------------