Add Upload functionality #8

Merged
tueem merged 5 commits from feat/upload into dev 2026-02-03 07:48:32 +00:00
Showing only changes of commit 08a7d8eebe - Show all commits

View File

@@ -16,6 +16,7 @@ func PrepareHTTP() {
registerAuthorized("/svg/", func(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
routes.CreateSVG(w, *r)
})