ipchat 0.0.0

Chat solution for local networks based on WLAN and Router's IP Addresses
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod start;

use clap::Parser;

use self::start::StartCmd;

#[derive(Debug, Parser)]
#[command(
    name = "ipchat",
    about = "IPChat Server Command Line Interface",
    author = "Leo Borai <estebanborai@gmail.com>",
    max_term_width = 100,
    next_line_help = true
)]
pub enum Command {
    /// Starts an IPChat server instance
    Start(StartCmd),
}