implement empty endpoints with openapi

This commit is contained in:
Akhmedov Khadgimurad
2025-11-06 18:53:37 +03:00
parent a0587512eb
commit ae1084c1c3
2 changed files with 18 additions and 3 deletions

View File

@ -1,3 +1,6 @@
fn main() {
println!("Hello, world!");
use test_exercise::router;
#[tokio::main]
async fn main() {
router().await;
}