Channel (public) now exposes its field as public

This commit is contained in:
shockrah 2020-08-20 19:19:45 -07:00
parent e6273b437b
commit aa01d0ee90

View File

@ -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)]