refac: fixed, better, smarter, correct dependency injection

This commit is contained in:
Florian Sylvain
2025-03-29 00:51:01 +01:00
parent d895477b8c
commit a77a5ad314
35 changed files with 169 additions and 144 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ func PostImage(w http.ResponseWriter, r *http.Request) {
return
}
newJson := map[string]interface{}{"location": newImage.Path}
newJson := map[string]any{"location": newImage.Path}
newJsonBytes, _ := json.Marshal(newJson)
_, _ = w.Write(newJsonBytes)