netter 0.3.2

Netter is a CLI tool for fast and easy server startup!
{
  "addr": [127, 0, 0, 1],
  "port": 8080,
  "routes": [
    {
      "method": "GET",
      "path": "/",
      "response": {
        "body": "Welcome to the server!",
        "headers": [["Content-Type", "text/plain"]],
        "status": 200
      }
    },
    {
      "method": "POST",
      "path": "/echo",
      "response": {
        "body": "Echo endpoint",
        "headers": [["Content-Type", "text/plain"]],
        "status": 200
      }
    }
  ]
}