fixed channel api type

This commit is contained in:
shockrah 2021-04-07 20:24:31 -07:00
parent 10e8b7331f
commit 8be5547d9e

View File

@ -17,11 +17,11 @@ pub struct Message {
} }
#[derive(Clone)] #[derive(Deserialize, Clone)]
pub struct Channel { pub struct Channel {
pub name: String, pub name: String,
pub id: u64, pub id: u64,
pub r#type: i32, pub kind: i32,
pub description: Option<String>, pub description: Option<String>,
} }