Skip to content
This repository has been archived by the owner on Aug 21, 2022. It is now read-only.

Commit

Permalink
🎨 Move firn::x86 to firn::arch::x86
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLukeGuy committed Apr 4, 2022
1 parent 2a87f97 commit 4dac7a9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
pub use firn_core::*;

#[cfg(feature = "arch-x86")]
pub mod x86 {
pub use firn_arch_x86::*;
pub mod arch {
#[cfg(feature = "arch-x86")]
pub mod x86 {
pub use firn_arch_x86::*;
}
}

0 comments on commit 4dac7a9

Please sign in to comment.