Added some API doc comments

This commit is contained in:
Dave
2026-02-16 16:55:59 +00:00
parent feb05dc8d0
commit dae772e619
3 changed files with 18 additions and 0 deletions

View File

@@ -1,5 +1,8 @@
use poem::handler;
/// Health check endpoint.
///
/// Returns a static "ok" response to indicate the server is running.
#[handler]
pub fn health() -> &'static str {
"ok"