1 use super::common::Hypervisor;
2 use uuid::{uuid, Uuid};
3 
4 pub(super) struct GunyahHypervisor;
5 
6 impl GunyahHypervisor {
7     pub const UUID: Uuid = uuid!("c1d58fcd-a453-5fdb-9265-ce36673d5f14");
8 }
9 
10 impl Hypervisor for GunyahHypervisor {}
11