1
2
3
4
5
6
7
8
extern crate oxygengine_core as core;

pub mod app;
pub mod fetch;

pub mod prelude {
    pub use crate::{app::*, fetch::*};
}