Initialize Rust GPUI browser shell

This commit is contained in:
2026-05-07 18:27:15 -04:00
commit d9a27f3dc4
41 changed files with 11573 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
mod command;
mod error;
mod identifiers;
mod profile;
mod space;
mod split;
mod tab;
mod url_text;
pub use command::{CommandIntent, CommandScope};
pub use error::DomainError;
pub use identifiers::{ProfileId, SpaceId, SplitId, TabId, WebViewId};
pub use profile::{Profile, ProfileKind};
pub use space::{ArchivePolicy, Space};
pub use split::{SplitAxis, SplitLayout, SplitPane};
pub use tab::{BrowserTab, TabFlags, TabState};
pub use url_text::UrlText;