21 lines
516 B
Rust
21 lines
516 B
Rust
|
use anyhow::*;
|
||
|
use futures::{future::BoxFuture, FutureExt};
|
||
|
use northstar::{Server, Request, Response, GEMINI_PORT};
|
||
|
|
||
|
#[tokio::main]
|
||
|
async fn main() -> Result<()> {
|
||
|
Server::bind(("localhost", GEMINI_PORT))
|
||
|
.serve(handle_request)
|
||
|
.await
|
||
|
}
|
||
|
|
||
|
fn handle_request(request: Request) -> BoxFuture<'static, Result<Response>> {
|
||
|
async move {
|
||
|
let path = request.path_segments();
|
||
|
let response = northstar::util::serve_dir("public", &path).await?;
|
||
|
|
||
|
Ok(response)
|
||
|
}
|
||
|
.boxed()
|
||
|
}
|