new-home-proxy 0.1.2

This is a part of the New Home IoT System. It is used to make the core available in the www.
1
2
3
4
5
6
7
8
9
10
11
/// This module contains the config struct for the server application
pub mod config;

/// This module handles the websocket requests and responses
pub mod websocket_handler;

/// This module contains code to control and routes requests to clients
pub mod client_manager;

/// This module contains the http request handler for the server
pub mod handler;