/// This is a standard example which shows how you can use Rohanasan for logic building. use rohanasan::{ rohanasan, send_file, send_http_response, serve, url_decode, Request, DEFAULT_HTML_HEADER, }; fn handle(req: Request) -> String { if req.path == "/" { send_file(DEFAULT_HTML_HEADER, "./html/index.html", req) } else if req.path == "/hello" { send_http_response(DEFAULT_HTML_HEADER, "