cala_server/lib.rs
1#![cfg_attr(feature = "fail-on-warnings", deny(warnings))]
2#![cfg_attr(feature = "fail-on-warnings", deny(clippy::all))]
3
4pub mod app;
5pub mod cli;
6pub mod extension;
7pub mod graphql;
8// pub mod integration;
9pub mod primitives;
10pub mod server;
11
12// Re exports
13pub use async_graphql;
14pub use async_trait;
15pub use futures;
16pub use sqlx;
17pub use tokio;
18pub use tracing;
19
20pub use cala_ledger::outbox;
21pub use cala_ledger::CalaLedger;
22
23pub use cala_ledger as ledger;
24pub use cala_types as core_types;