zebrad/
prelude.rs

1//! Application-local prelude: conveniently import types/functions/macros
2//! which are generally useful and should be available everywhere.
3
4/// Application state accessors
5pub use crate::application::APPLICATION;
6
7/// Commonly used Abscissa traits
8pub use abscissa_core::{Application, Command, Runnable};