Refactor and improve

This commit is contained in:
Andras Schmelczer 2026-02-03 20:26:57 +00:00
parent 1f148b2185
commit 242acff987
22 changed files with 754 additions and 1053 deletions

13
server-rs/src/routes.rs Normal file
View file

@ -0,0 +1,13 @@
mod features;
mod hexagon_stats;
pub(crate) mod hexagons;
mod og_image;
mod pois;
pub(crate) mod properties;
pub use features::{build_features_response, get_features, FeaturesResponse};
pub use hexagon_stats::get_hexagon_stats;
pub use hexagons::get_hexagons;
pub use og_image::get_og_image;
pub use pois::{get_poi_categories, get_pois};
pub use properties::get_hexagon_properties;