fluxor 1.1.1

Fluxor is a versatile Rust web framework designed for data science and computing science applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fluxio;

pub const CONNECT: fluxio::Method = fluxio::Method::CONNECT;
pub const DELETE: fluxio::Method = fluxio::Method::DELETE;
pub const GET: fluxio::Method = fluxio::Method::GET;
pub const HEAD: fluxio::Method = fluxio::Method::HEAD;
pub const OPTIONS: fluxio::Method = fluxio::Method::OPTIONS;
pub const PATCH: fluxio::Method = fluxio::Method::PATCH;
pub const POST: fluxio::Method = fluxio::Method::POST;
pub const PUT: fluxio::Method = fluxio::Method::PUT;
pub const TRACE: fluxio::Method = fluxio::Method::TRACE;