rossby 0.0.3

A blazingly fast, in-memory, NetCDF-to-API server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! HTTP request handlers for the rossby API.
//!
//! This module contains all the endpoint handlers for the web server.

pub mod data;
pub mod heartbeat;
pub mod image;
pub mod metadata;
pub mod point;

pub use data::data_handler;
pub use heartbeat::heartbeat_handler;
pub use image::image_handler;
pub use metadata::metadata_handler;
pub use point::point_handler;