Implemented core > invoke and convert_file_src.

This commit is contained in:
Brian Carlsen 2024-07-01 10:37:43 +02:00
parent d1b7948a4c
commit 85d92d3e3a
No known key found for this signature in database
GPG key ID: B14D281A79B2DDB7
5 changed files with 73 additions and 3 deletions

View file

@ -89,8 +89,11 @@ mod error;
#[cfg(feature = "event")]
pub mod event;
#[cfg(feature = "core")]
pub mod core;
pub use error::Error;
pub(crate) type Result<T> = core::result::Result<T, Error>;
pub(crate) type Result<T> = std::result::Result<T, Error>;
// #[cfg(any(feature = "window"))]
// pub(crate) mod utils {