nlfmt-serve 0.5.3

quickly serve files from a directory in your local network
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use nlfmt_serve::ServeArgs;

#[rocket::main]
async fn main() -> anyhow::Result<()> {
    let args = ServeArgs::parse();

    nlfmt_serve::run(args).await
}