diff --git a/server/src/channels.rs b/server/src/channels.rs index aab4c53..71d7d38 100644 --- a/server/src/channels.rs +++ b/server/src/channels.rs @@ -38,10 +38,10 @@ impl ChannelType { // Primary way of interpretting sql data on our channels table pub struct Channel { - id: u64, - name: String, - description: String, - kind: ChannelType + pub id: u64, + pub name: String, + pub description: String, + pub kind: ChannelType } #[derive(Debug)]