// probably may need to change to enum (should be much better)
pub const GET: &str = "GET";
pub const PUT: &str = "PUT";
pub const POST: &str = "POST";
pub const HEAD: &str = "HEAD";
pub const PATCH: &str = "PATCH";
pub const DELETE: &str = "DELETE";
pub const OPTIONS: &str = "OPTIONS";
pub const DEFAULT: &str = "DEFAULT";