mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
9 lines
399 B
Rust
9 lines
399 B
Rust
use polariton::operation::Typed;
|
|
|
|
pub trait ChatUser {
|
|
fn subscribed_channels(&self) -> Typed<()>;
|
|
fn subscribed_channels_strings(&self) -> Vec<String>;
|
|
fn add_subscribed_channel(&self, channel: String, channel_ty: crate::data::channel::ChatChannelType) -> Typed<()>;
|
|
fn remove_subscribed_channel(&self, channel: String, channel_ty: crate::data::channel::ChatChannelType) -> bool;
|
|
}
|