#[cfg(native)]
pub use reinhardt_testkit::fixtures::{client, dcl, di, loader, mock, server};
#[cfg(all(native, feature = "testcontainers"))]
pub use reinhardt_testkit::fixtures::{
resources, schema, shared_postgres, testcontainers, validator,
};
#[cfg(native)]
pub use reinhardt_testkit::fixtures::migrations;
#[cfg(all(native, feature = "admin"))]
pub use reinhardt_testkit::fixtures::admin;
#[cfg(all(native, feature = "server-fn-test"))]
pub use reinhardt_testkit::fixtures::server_fn;
#[cfg(native)]
pub use reinhardt_testkit::fixtures::*;
#[cfg(native)]
pub mod auth;
#[cfg(all(native, feature = "admin", feature = "testcontainers"))]
pub mod admin_panel;
#[cfg(all(native, feature = "admin", feature = "testcontainers"))]
pub mod admin_migrations;
#[cfg(any(
all(wasm, feature = "wasm"),
all(feature = "e2e", native),
all(feature = "e2e-cdp", native)
))]
pub mod wasm;
#[cfg(all(native, feature = "admin", feature = "testcontainers"))]
pub use admin_migrations::{AdminTableCreator, admin_table_creator};