Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T05:16:53.409Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

channel.rs

18 lines · 514 B · rust
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
Served at tenant.openagents/omega Member data and write actions are omitted.