Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Mar 1, 2024
1 parent 24dc148 commit a293073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func NewHTTPServer(cfg *Config) (*HTTPServer, error) {
mux.HandleFunc(pat.Get("/v1/bio/:name"), s.handleGetUser)
mux.HandleFunc(pat.Post("/v1/bio"), s.handlePostUser)
mux.HandleFunc(pat.Post("/v1/encrypt-key"), s.handlePostEncryptKey)
mux.HandleFunc(pat.Get("/v1/fs*"), s.handleGetFile)
mux.HandleFunc(pat.Get("/v1/fs/*"), s.handleGetFile)
mux.HandleFunc(pat.Post("/v1/fs/*"), s.handlePostFile)
mux.HandleFunc(pat.Delete("/v1/fs/*"), s.handleDeleteFile)
mux.HandleFunc(pat.Get("/v1/seq/:name"), s.handleGetSeq)
Expand Down

0 comments on commit a293073

Please sign in to comment.