codde_protocol 0.1.6

Multi Communication protocol in heart of the C.O.D.D.E. Pi framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
use self::server_com::ServerCom;

// python destination code
pub mod codde_pi_server;
pub mod com_socket;
pub mod models;
pub mod server_com;

pub enum ServerProtocol<T: ServerCom> {
    WebSocket(T),
}