foundry-rs 0.6.22

Configuration-driven REST backend library for Rust with PostgreSQL — define schemas, tables, and APIs in JSON, get a production-grade REST service.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Route registration: common, config, entity.

mod common;
mod config;
mod entity;
mod reports;
pub use common::*;
pub use config::*;
pub use entity::*;
pub use reports::*;