mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-01-10 21:04:59 +00:00
5f20342736
* abscissa init * remove package in cargo.toml * cargo fmt + remove more stuff fro toml * bump rust edition
9 lines
296 B
Rust
9 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;
|