12 lines
309 B
Rust
12 lines
309 B
Rust
// build.rs reaches these definitions with include!, so nothing here may refer to
|
|
// the rest of the crate: keep this tree to clap definitions only
|
|
mod ahab;
|
|
mod django;
|
|
mod link;
|
|
mod postgres;
|
|
|
|
pub use ahab::{Ahab, Commands};
|
|
pub use django::Django;
|
|
pub use link::Link;
|
|
pub use postgres::{Format, Postgres};
|