ogcapi_proxy/lib.rs
1#![doc = include_str!("../README.md")]
2
3mod routes;
4mod extractors;
5mod collection_proxy;
6mod collections_proxy;
7mod proxied_linked;
8
9pub use collection_proxy::CollectionProxy;
10pub use collections_proxy::CollectionsProxy;
11
12/// Get an Axum router serving the endpoints necessary to build a basic OGC API service.
13pub use routes::routes;