pub mod conventions;
pub mod discovery;
pub mod openapi;
pub mod params;
pub mod prefetch;
pub mod router;
pub mod seed;
pub use prefetch::{Eagerness, PrefetchConfig, SpeculationMode};
pub use axum;
pub use http;
pub use utoipa;
pub use params::{Params, search_params};
pub use seed::{QuerySeed, SeedEntry, seed_key};
pub use serde_json;
pub use nextrs_macros::api;
#[cfg(feature = "vercel")]
pub mod vercel;
#[cfg(feature = "build")]
pub mod build;
#[cfg(feature = "build")]
pub mod docs;
#[cfg(feature = "tsx")]
pub mod bundle;