mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 18:35:16 +00:00
8 lines
189 B
Go
8 lines
189 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// MethodsPutPost defines a string slice that contains the PUT and POST request methods.
|
|
var MethodsPutPost = []string{http.MethodPut, http.MethodPost}
|