20 lines
512 B
Rust
20 lines
512 B
Rust
mod archive;
|
|
mod command;
|
|
mod error;
|
|
mod identifiers;
|
|
mod profile;
|
|
mod space;
|
|
mod split;
|
|
mod tab;
|
|
mod url_text;
|
|
|
|
pub use archive::{ArchiveSource, ArchivedTab};
|
|
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;
|