lest 0.2.1

A modular approach to a web server. Based on actix-web.
Documentation
1
2
3
4
5
6
7
8
9
10
11

#[allow(dead_code)]
#[derive(PartialEq, Debug)]
/// This Method enum represents the HTTP methods that can be used in a request.
pub enum Method {
    Get,
    Post,
    Put,
    Delete,
    Patch
}