use StructOpt;/// Static Web Server/// Host address (E.g 127.0.0.1 or ::1)pub host: String,/// Host portpub port: u16,/// Root directory path of static filespub root: String,/// Specify a logging level in lower case.pub log_level: String,
ascending towards madness
use StructOpt;/// Static Web Server/// Host address (E.g 127.0.0.1 or ::1)pub host: String,/// Host portpub port: u16,/// Root directory path of static filespub root: String,/// Specify a logging level in lower case.pub log_level: String,