Add ability to create DMs

This commit is contained in:
Paul Makles
2020-01-26 15:06:31 +00:00
parent 20c82ddef3
commit 0e5211e705
3 changed files with 84 additions and 4 deletions

5
src/routes/channel.rs Normal file
View File

@@ -0,0 +1,5 @@
pub enum ChannelType {
DM = 0,
GROUP_DM = 1,
GUILD_CHANNEL = 2,
}