diff options
| author | John Turner <jturner.usa@gmail.com> | 2026-03-05 00:52:03 -0500 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2026-03-05 00:52:03 -0500 |
| commit | 92e8d4947de614a67fed6709a59365de98705b35 (patch) | |
| tree | 981213f1ed73c88834f9ec3fe7c9b1b8f3e19211 /src/main.rs | |
| parent | 583a62c4a2ac6137134d50f70ff8ad546ac4b2a1 (diff) | |
| download | httpd-92e8d4947de614a67fed6709a59365de98705b35.tar.gz | |
impl Lua handler
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 3d69f36..6d89a0d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -83,6 +83,7 @@ async fn handle(handlers: Table, request: Request) -> Result<Response, HandleErr match handler { Handler::StaticFile(staticfile) => Ok(staticfile.handle(request).await?), + Handler::Lua(lua_response) => Ok(lua_response.handle(request).await?), } } |
