soma_studio_server/lib.rs
1mod app;
2mod chat_events;
3mod ingest;
4mod notebook;
5mod search_index;
6mod storage;
7mod transitions;
8mod workspace;
9mod workspace_tasks;
10
11pub use app::{
12 PreparedServer, embedded_web_asset_count, embedded_web_shell_available, prepare_server,
13};
14pub use search_index::search_index_status;
15pub use storage::{
16 IndexedSourceFileRow, ProviderStatusRow, STORAGE_SCHEMA_VERSION, StorageSchemaStatus,
17 StudioStorage,
18};