hvlite_defs/
lib.rs

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! Client-facing definitions for the VM worker.
5
6#![expect(missing_docs)]
7#![forbid(unsafe_code)]
8
9pub mod config;
10pub mod entrypoint;
11pub mod rpc;
12pub mod worker;