tarantula-s2 0.1.0

Search polygons at lngitude/latitude with s2geometry
1
2
3
4
5
6
7
8
9
10
11

//! Tarantula search service entry point.
//!
//! This binary builds the search index and starts the REST and gRPC servers.

use tarantula_s2::run;

#[tokio::main]
async fn main() {
    run().await;
}