fx_durable_ga/
lib.rs

1#[cfg(not(feature = "migration"))]
2mod bootstrap;
3#[cfg(not(feature = "migration"))]
4mod repositories;
5#[cfg(not(feature = "migration"))]
6mod services;
7
8pub mod migrations;
9pub mod models;
10
11#[cfg(not(feature = "migration"))]
12pub use bootstrap::bootstrap;
13#[cfg(not(feature = "migration"))]
14pub use repositories::chainable;
15#[cfg(not(feature = "migration"))]
16pub use repositories::genotypes::Filter as GenotypesFilter;
17#[cfg(not(feature = "migration"))]
18pub use services::optimization;
19#[cfg(not(feature = "migration"))]
20pub use services::optimization::{register_event_handlers, register_job_handlers};