1
2
3
4
5
6
7
8
9
10
11
12
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()
}