Can't even keep track anymore

This commit is contained in:
Andras Schmelczer 2026-02-13 09:16:28 +00:00
parent dccc1e439d
commit 3a3f899ea2
50 changed files with 1144 additions and 560 deletions

View file

@ -1,3 +1,4 @@
mod ai_filters;
mod area_summary;
mod export;
mod features;
@ -5,6 +6,7 @@ mod hexagon_stats;
pub(crate) mod hexagons;
mod me;
mod pb_proxy;
mod places;
mod pois;
mod postcode_stats;
mod postcodes;
@ -15,6 +17,7 @@ mod stats;
mod tiles;
pub(crate) mod travel_time;
pub use ai_filters::{build_feature_prompt, build_ollama_schema, post_ai_filters};
pub use area_summary::post_area_summary;
pub use export::get_export;
pub use features::{build_features_response, get_features, FeatureInfo, FeaturesResponse};
@ -22,6 +25,7 @@ pub use hexagon_stats::get_hexagon_stats;
pub use hexagons::get_hexagons;
pub use me::get_me;
pub use pb_proxy::proxy_to_pocketbase;
pub use places::get_places;
pub use pois::{get_poi_categories, get_pois};
pub use postcode_stats::get_postcode_stats;
pub use postcodes::{get_postcode_lookup, get_postcodes};