1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
34//! Type definitions for loading guest firmware, available as no_std if no features are defined.
56#![no_std]
7#![forbid(unsafe_code)]
89pub mod linux;
10pub mod paravisor;
11pub mod shim;