1 //! Standard UEFI tables. 2 3 mod header; 4 mod revision; 5 6 pub mod boot; 7 pub mod configuration; 8 pub mod runtime; 9 pub mod system; 10 11 pub use header::Header; 12 pub use revision::Revision; 13