pub mod command;
mod sod;
use command::http::model::HttpCommand;
use crate::command::http::creat_http_command;
use crate::sod::sod_version;
pub fn create_http_api() -> HttpCommand {
let v = sod_version();
println!("Sod version {}", v);
creat_http_command()
}