serve-cli 1.0.4

This is a file serving and file upload service in the local area network (LAN) CLI
Documentation
1
2
3
4
5
6
7
#![feature(async_closure)]
use serve_cli::start_all_server;
/// Program Entry Point
#[tokio::main]
async fn main() {
    start_all_server::start().await;
}