Enable Channels for everyone

This commit is contained in:
Conrad Irwin 2024-01-14 13:58:12 -07:00
parent 600b5c65e9
commit 97047ffaca
4 changed files with 99 additions and 119 deletions

View file

@ -16,12 +16,6 @@ pub trait FeatureFlag {
const NAME: &'static str;
}
pub enum ChannelsAlpha {}
impl FeatureFlag for ChannelsAlpha {
const NAME: &'static str = "channels_alpha";
}
pub trait FeatureFlagViewExt<V: 'static> {
fn observe_flag<T: FeatureFlag, F>(&mut self, callback: F) -> Subscription
where