feat: query system

This commit is contained in:
2024-10-16 10:59:28 +01:00
parent 9a8bb54e08
commit f0a50918a8
25 changed files with 536 additions and 317 deletions

View File

@ -1,24 +1,24 @@
mod header;
mod stream;
mod stream_list;
mod avatar;
mod stream_player;
mod video_placeholder;
mod chat;
mod chat_message;
mod header;
mod profile;
mod stream;
mod stream_list;
mod stream_player;
mod video_placeholder;
use egui::{Response, Ui};
use crate::route::RouteServices;
use egui::{Response, Ui};
pub trait NostrWidget {
fn render(&mut self, ui: &mut Ui, services: &RouteServices<'_>) -> Response;
}
pub use self::avatar::Avatar;
pub use self::header::Header;
pub use self::stream_list::StreamList;
pub use self::video_placeholder::VideoPlaceholder;
pub use self::stream_player::StreamPlayer;
pub use self::profile::Profile;
pub use self::chat::Chat;
pub use self::header::Header;
pub use self::profile::Profile;
pub use self::stream_list::StreamList;
pub use self::stream_player::StreamPlayer;
pub use self::video_placeholder::VideoPlaceholder;