mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +08:00
9 lines
189 B
Go
9 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}
|