aboutsummaryrefslogtreecommitdiff
path: root/server/registry/src/main.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-14 20:38:16 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-14 20:38:20 +0200
commit2a43519723e9550bfdf67f0bace9511a07e1fb45 (patch)
treef7cc0dd12041dc36b16f1aa39f8c1dc4257776a8 /server/registry/src/main.rs
parente7564920d87ed047dc5af3e6a88b1709a48ce7c3 (diff)
downloadhurrycurry-2a43519723e9550bfdf67f0bace9511a07e1fb45.tar
hurrycurry-2a43519723e9550bfdf67f0bace9511a07e1fb45.tar.bz2
hurrycurry-2a43519723e9550bfdf67f0bace9511a07e1fb45.tar.zst
registry: query option for multiple styles
Diffstat (limited to 'server/registry/src/main.rs')
-rw-r--r--server/registry/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/registry/src/main.rs b/server/registry/src/main.rs
index b9cfbfe0..da7f404b 100644
--- a/server/registry/src/main.rs
+++ b/server/registry/src/main.rs
@@ -90,7 +90,7 @@ fn main() {
#[derive(Default)]
struct Registry {
json_response: Arc<str>,
- html_response: Arc<str>,
+ html_response: [Arc<str>; 4],
entries: Vec<Entry>,
servers: HashMap<u128, InternalEntry>,
}