pubky_testnet/lib.rs
1// Actual testnet exposed in the library
2mod ephemeral_testnet;
3mod static_testnet;
4mod testnet;
5
6#[cfg(feature = "embedded-postgres")]
7pub mod embedded_postgres;
8pub use ephemeral_testnet::{EphemeralTestnet, EphemeralTestnetBuilder};
9pub use static_testnet::StaticTestnet;
10pub use testnet::Testnet;
11
12// Re-export the core crates
13pub use pubky;
14pub use pubky_common;
15pub use pubky_homeserver;
16pub use pubky_test_utils::{drop_test_databases, test};