diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-22 22:12:56 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-22 22:24:41 -0400 |
| commit | 214a9e6c1fd729fc2c49eb2a5d41b5651ff5bc61 (patch) | |
| tree | 2b687e9a3a98645e7d824c19079ecf158bb6c7b7 /src/ui/mod.rs | |
| parent | 056e56ba2da03636eafba384322e386259817d41 (diff) | |
Set `charset` params on returned content types.
This is a somewhat indirect change; it removes `mime_guess` in favour of some very, uh, "bespoke" mime detection logic that hardcodes mime types for the small repertoire of file extensions actually present in the UI. `mime_guess` doesn't provide a way to set params as it exports its own `Mime` struct, which doesn't provide `with_params()`.
Diffstat (limited to 'src/ui/mod.rs')
| -rw-r--r-- | src/ui/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/mod.rs b/src/ui/mod.rs index c145382..f8caa48 100644 --- a/src/ui/mod.rs +++ b/src/ui/mod.rs @@ -1,6 +1,7 @@ mod assets; mod error; mod middleware; +mod mime; mod routes; pub use self::routes::router; |
