ayaka_model/
lib.rs

1//! The high level wrapper model of Ayaka.
2//!
3//! This crate provides a view model for a full-functionality frontend,
4//! and a abstract trait of settings manager.
5//!
6//! It re-exports the types of [`ayaka_runtime`].
7
8#![warn(missing_docs)]
9#![deny(unsafe_code)]
10#![feature(coroutines)]
11
12mod settings;
13pub use settings::*;
14
15mod view_model;
16pub use view_model::*;
17
18#[doc(no_inline)]
19pub use ayaka_runtime::*;