feat: add README.md

This commit is contained in:
2022-03-19 23:45:47 +08:00
parent 7007a77334
commit cbb8f43ad3
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
fn main() {
let rt = tokio::runtime::Runtime::new().unwrap();
rt.block_on(async {
invoke().await
});
}
async fn invoke() {
println!("Hello World!");
}