dir
#![deny(warnings)] #[tokio::main] async fn main() { pretty_env_logger::init(); warp::serve(warp::fs::dir("examples/dir")) .run(([127, 0, 0, 1], 3030)) .await; }
<!DOCTYPE html>
<html>
<head>
<title>dir/index.html</title>
</head>
<body>
<h1>Welcome to Dir</h1>
<a href="/another.html">another page</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>dir/another.html</title>
</head>
<body>
<h1>Welcome to Another Page</h1>
<a href="/">back</a>
</body>
</html>