diff options
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/misc/mod.rs b/src/misc/mod.rs index c2992cc..b5b3262 100644 --- a/src/misc/mod.rs +++ b/src/misc/mod.rs @@ -6,4 +6,8 @@ pub mod handlers { pub async fn index() -> Result<impl Reply, Rejection> { Response::builder().html(|o| templates::index_html(o)) } + + pub async fn about() -> Result<impl Reply, Rejection> { + Response::builder().html(|o| templates::about_html(o)) + } } |