1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34





#[ cfg (feature = "runtime") ]
pub(crate) mod main;

#[ cfg (feature = "runtime") ]
pub(crate) mod server;

#[ cfg (feature = "runtime") ]
pub(crate) mod macros;


#[ cfg (feature = "runtime") ]
pub use main::main_with_static;


#[ cfg (feature = "runtime") ]
pub use ::hyper_simple_server as hss;

#[ cfg (feature = "runtime") ]
pub use ::hyper_simple_server::*;




#[ cfg (feature = "builder") ]
pub(crate) mod builder;

#[ cfg (feature = "builder") ]
pub use builder::*;