Simple S3-like server for development purposes, written in Go
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add note to fix later

+1
+1
server.go
··· 145 145 146 146 result, err := listObjects(root, bucketName, r.URL.Query().Get("prefix")) 147 147 if err != nil { 148 + // FIXME: I think this should always return 200 anyways 148 149 if errors.Is(err, fs.ErrNotExist) { 149 150 http.Error(w, err.Error(), http.StatusNotFound) 150 151 } else {