From 3519c765266d28b99a1c705c102c0dfd2ec91fd8 Mon Sep 17 00:00:00 2001 From: 2mal3 <56305732+2mal3@users.noreply.github.com> Date: Thu, 20 Nov 2025 11:35:48 +0100 Subject: [PATCH] refactor(display): remove unused code --- display/web/main.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/display/web/main.go b/display/web/main.go index f874afe..6c9611e 100644 --- a/display/web/main.go +++ b/display/web/main.go @@ -26,15 +26,6 @@ import ( var version string var sseConnection chan string -var supportedExtensions = map[string]bool{ - ".mp4": true, - ".jpg": true, - ".jpeg": true, - ".png": true, - ".gif": true, - ".pptx": true, - ".odp": true, -} var badRequestDescription string = "Request uses invalid JSON syntax or does not follow request schema." func StartWebServer(v string, port string) {