move to api crate

This commit is contained in:
awtterpip
2023-12-26 14:20:22 -06:00
parent 037f719329
commit ffa9e6d080
26 changed files with 565 additions and 1310 deletions

12
xr_api/src/lib.rs Normal file
View File

@@ -0,0 +1,12 @@
pub mod api;
pub mod api_traits;
pub mod backend;
pub mod error;
pub mod types;
pub mod prelude {
pub use super::api::*;
pub use super::api_traits::*;
pub use super::error::*;
pub use super::types::*;
}