├── .env-example ├── .gitignore ├── .idea └── workspace.xml ├── Dockerfile ├── README.md ├── command ├── avatar.go ├── command.go ├── embed.go ├── help.go ├── manager.go ├── ping.go ├── play.go ├── serverinfo.go └── stop.go ├── event ├── guildMemberAdd.go └── ready.go ├── go.mod ├── go.sum ├── main.go ├── player ├── manager.go ├── player.go ├── track.go └── utils.go └── utils └── func.go /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/README.md -------------------------------------------------------------------------------- /command/avatar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/avatar.go -------------------------------------------------------------------------------- /command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/command.go -------------------------------------------------------------------------------- /command/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/embed.go -------------------------------------------------------------------------------- /command/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/help.go -------------------------------------------------------------------------------- /command/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/manager.go -------------------------------------------------------------------------------- /command/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/ping.go -------------------------------------------------------------------------------- /command/play.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/play.go -------------------------------------------------------------------------------- /command/serverinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/serverinfo.go -------------------------------------------------------------------------------- /command/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/command/stop.go -------------------------------------------------------------------------------- /event/guildMemberAdd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/event/guildMemberAdd.go -------------------------------------------------------------------------------- /event/ready.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/event/ready.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/main.go -------------------------------------------------------------------------------- /player/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/player/manager.go -------------------------------------------------------------------------------- /player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/player/player.go -------------------------------------------------------------------------------- /player/track.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/player/track.go -------------------------------------------------------------------------------- /player/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/player/utils.go -------------------------------------------------------------------------------- /utils/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Goscord/bot/HEAD/utils/func.go --------------------------------------------------------------------------------