Cleaned code

This commit is contained in:
2025-08-07 22:13:39 +02:00
parent 6bcedf84f6
commit afccf236fc
5 changed files with 23 additions and 56 deletions

View File

@@ -12,8 +12,5 @@ func HandleIndex(c *gin.Context) {
if baseURL == "" {
baseURL = "http://localhost:8080"
}
c.HTML(http.StatusOK, "index.html", gin.H{
"BaseURL": baseURL,
})
c.HTML(http.StatusOK, "index.html", gin.H{"BaseURL": baseURL})
}