create_rspc_app/
internal.rs

1//! These are the internals of create-rspc-app
2//!
3//! ## Warning
4//!
5//! These APIs are meant for internal use so you are using them at your own risk.
6//! Expect APIs to break without a prior notice and without semver.
7
8pub mod database {
9    pub use crate::database::*;
10}
11
12pub mod framework {
13    pub use crate::framework::*;
14}
15
16pub mod frontend_framework {
17    pub use crate::frontend_framework::*;
18}
19
20pub mod generator {
21    pub use crate::generator::*;
22}