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;
8pub mod integration;
9pub mod job;
10pub mod primitives;
11pub mod server;
12
13// Re exports
14pub use async_graphql;
15pub use async_trait;
16pub use futures;
17pub use sqlx;
18pub use tokio;
19pub use tracing;
20
21pub use cala_ledger::outbox;
22pub use cala_ledger::CalaLedger;
23
24pub use cala_ledger as ledger;
25pub use cala_types as core_types;