new-home-application 0.1.3

New Home iot application framework. Meant to build application for the New Home Core
Documentation
extern crate serde;
extern crate serde_json;

pub mod application {
    pub mod application;

    pub mod application_framework;

    pub mod app_error;

    pub mod commands {
        pub mod info_command;

        pub mod help_command;
    }
}

pub mod communication {
    pub mod communication_manager;

    pub mod client_handler;

    pub mod request;

    pub mod client_argument_parser;

    pub mod parser_error;
}

pub mod method {
    pub mod method_structure;

    pub mod method_callable;

    pub mod method_manager;

    pub mod response_formatter;
}

pub mod net {
    pub mod tcp_server;

    pub mod tcp_reader;

    pub mod tcp_writer;
}