├── .gitignore ├── .travis.yml ├── DiscordState ├── session.go ├── state.go └── struct.go ├── LICENSE ├── README.md ├── commands.go ├── config.go ├── events.go ├── helper.go ├── main.go ├── menu.go └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /DiscordState/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/DiscordState/session.go -------------------------------------------------------------------------------- /DiscordState/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/DiscordState/state.go -------------------------------------------------------------------------------- /DiscordState/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/DiscordState/struct.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/README.md -------------------------------------------------------------------------------- /commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/commands.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/config.go -------------------------------------------------------------------------------- /events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/events.go -------------------------------------------------------------------------------- /helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/helper.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/main.go -------------------------------------------------------------------------------- /menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/menu.go -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickvanLoo/discord-cli/HEAD/screenshot.png --------------------------------------------------------------------------------