class TodoApp def call env html = File.open("home.html", "rb") [200, {"Content-Type" => "text/html"}, [html.read]] end end