Add Upload functionality #8

Merged
tueem merged 5 commits from feat/upload into dev 2026-02-03 07:48:32 +00:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit 884ad120c9 - Show all commits

View File

@@ -27,7 +27,6 @@ func Start() {
if err := http.ListenAndServe(":3000", nil); err != nil {
panic(err)
}
}
func registerAuthorized(path string, f func(w http.ResponseWriter, r *http.Request)) {

View File

@@ -21,6 +21,7 @@ func NewFileStorage(path string) *FileSvgStorage {
if err != nil {
panic(err)
}
log.Println("Initialized file storage handler")
return &FileSvgStorage{path}
}