netter 0.3.1

Netter is a CLI tool for fast and easy server startup!
1
2
3
4
5
6
7
8
9
route "/user" GET {
    val action = "active";
    if (action == "active") {
        response.body("TRUE");
    } else {
        response.body("FALSE");
    }
    response.send();
};