6 个版本
0.3.0 | 2023年12月2日 |
---|---|
0.2.3 | 2023年12月2日 |
0.2.2 | 2022年12月30日 |
0.2.1 | 2022年11月26日 |
0.1.0 | 2022年11月9日 |
#1010 in 开发工具
962 每月下载量
9KB
Swagger UI
Swagger UI 代码来自:https://github.com/swagger-api/swagger-ui。
使用
let doc_url = "swagger/openapi.json";
let app = Router::new()
.route("/swagger", get(|| async { swagger_ui(doc_url) }))
.route(doc_url, get(|| async { include_str!("openapi.json") }))
// your other routes
.route("/", get(|| async { "Hello, World!" }));