1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Connection by protocol FastCGI
pub mod fastcgi;

/// Connection by protocol GRPC
pub mod grpc;

/// Connection by protocol HTTP
pub mod http;

/// Connection by protocol SCGI
pub mod scgi;

/// Connection by protocol UWSGI
pub mod uwsgi;

/// Connection by protocol WebSocket
pub mod websocket;