hvcg_example_openapi_entity 1.0.0

This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
Documentation
//! Main binary entry point for hvcg_example_openapi_entity implementation.

#![allow(missing_docs)]

use clap::{App, Arg};

mod server;


/// Create custom server, wire it to the autogenerated router,
/// and pass it to the web server.
#[tokio::main]
async fn main() {
    env_logger::init();

    let matches = App::new("server")
        .arg(Arg::with_name("https")
            .long("https")
            .help("Whether to use HTTPS or not"))
        .get_matches();

    let addr = "127.0.0.1:8080";

    server::create(addr, matches.is_present("https")).await;
}