ogcapi-proxy 0.2.0

OGC API proxy service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

mod routes;
mod extractors;
mod collection_proxy;
mod collections_proxy;
mod proxied_linked;

pub use collection_proxy::CollectionProxy;
pub use collections_proxy::CollectionsProxy;

/// Get an Axum router serving the endpoints necessary to build a basic OGC API service. 
pub use routes::routes;