1 #![no_main] 2 3 use uefi::prelude::*; 4 5 #[entry] main<T>() -> Status6 fn main<T>() -> Status { 7 Status::SUCCESS 8 } 9