rs-mock-server 0.6.16

A simple, file-based mock API server that maps your directory structure to HTTP and GraphQL routes. Ideal for local development and testing.
pub mod basic_handlers;
pub use basic_handlers::*;

pub mod rest_handlers;
pub use rest_handlers::*;

pub mod upload_handlers;
pub use upload_handlers::*;

pub mod auth_handlers;
pub use auth_handlers::*;

pub mod collections_handlers;
pub use collections_handlers::*;

pub mod graphql_handlers;
pub use graphql_handlers::*;

pub mod utils;
pub use utils::*;