1// SPDX-License-Identifier: MIT OR Apache-2.0 2 3//! Standard UEFI tables. 4 5mod header; 6mod revision; 7 8pub mod boot; 9pub mod configuration; 10pub mod runtime; 11pub mod system; 12 13pub use header::Header; 14pub use revision::Revision;