```rust
mod mirror;
use aok::{Result, OK};
use bgu::{boot, PUBLIC_KEY_LENGTH};
use static_init::constructor;
pub const PK: &[u8; PUBLIC_KEY_LENGTH] = include_bytes!("i18n.pk");
extern "C" fn init() {
loginit::init()
}
async fn main() -> Result<()> {
dbg!("test main");
OK
}
async fn test() -> Result<()> {
boot(PK, mirror::MIRROR, "i18", main).await?;
OK
}
```