http-server 1.0.0-pre.6fa7635

Simple and configurable command-line HTTP server
1
2
3
4
5
6
7
8
9
10
11
mod start;

use clap::Parser;

use self::start::StartOpt;

#[derive(Debug, Parser)]
pub enum Command {
    /// Start the HTTP Server
    Start(StartOpt),
}