jast_lib 0.1.1

minimalist backend framework to practice
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug)]
#[derive(Clone)]

pub struct Routes<'a> {
    // GET / HTTP/1.1
    pub method: &'a str,
    pub route: &'a str,
    pub response: &'a str,
}