16 lines
304 B
Rust
16 lines
304 B
Rust
// src/lib.rs
|
|
pub mod db;
|
|
pub mod auth;
|
|
pub mod indexer;
|
|
pub mod search_schema;
|
|
pub mod server;
|
|
pub mod shared;
|
|
pub mod table_structure;
|
|
pub mod table_definition;
|
|
pub mod tables_data;
|
|
pub mod table_script;
|
|
pub mod steel;
|
|
|
|
// Re-export run_server from the inner server module:
|
|
pub use server::run_server;
|