Skip to repository content18 lines · 514 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T05:16:53.409Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
channel.rs
1mod channel_buffer;
2mod channel_store;
3
4use client::{Client, UserStore};
5use gpui::{App, Entity};
6use std::sync::Arc;
7
8pub use channel_buffer::{ACKNOWLEDGE_DEBOUNCE_INTERVAL, ChannelBuffer, ChannelBufferEvent};
9pub use channel_store::{Channel, ChannelEvent, ChannelMembership, ChannelStore};
10
11#[cfg(test)]
12mod channel_store_tests;
13
14pub fn init(client: &Arc<Client>, user_store: Entity<UserStore>, cx: &mut App) {
15 channel_store::init(client, user_store, cx);
16 channel_buffer::init(&client.clone().into());
17}
18