chore(xenplatform): elf loader should async load the file (#197)

* fix(build): remove unused environment variables

* chore(xenplatform): elf loader should async load the file
This commit is contained in:
Alex Zenla
2024-06-23 05:57:01 -07:00
committed by GitHub
parent 6c3fc54688
commit 9a45d754bf
8 changed files with 25 additions and 25 deletions

View File

@ -38,6 +38,8 @@ pub enum Error {
GenericError(String),
#[error("failed to parse int: {0}")]
ParseIntError(#[from] std::num::ParseIntError),
#[error("failed to join async task: {0}")]
AsyncJoinError(#[from] tokio::task::JoinError),
}
pub type Result<T> = std::result::Result<T, Error>;