foxhole 0.4.0

A Blazingly-fast http framework
Documentation
1
2
3
4
5
6
7
8
9
/// This macro builds a vec of `DynSystem` from passed in systems.
#[macro_export]
macro_rules! sys {
    () => { vec![] };

    ($($x:ident),*) => {
        vec![$(foxhole::systems::DynSystem::new($x),)*]
    };
}