mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-25 11:55:53 +00:00
10 lines
296 B
Rust
10 lines
296 B
Rust
|
//! Application-local prelude: conveniently import types/functions/macros
|
||
|
//! which are generally useful and should be available in every module with
|
||
|
//! `use crate::prelude::*;
|
||
|
|
||
|
/// Abscissa core prelude
|
||
|
pub use abscissa_core::prelude::*;
|
||
|
|
||
|
/// Application state
|
||
|
pub use crate::application::APP;
|