mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
19 lines
345 B
Go
19 lines
345 B
Go
|
package git
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/hacdias/caddy-hugo/config"
|
||
|
)
|
||
|
|
||
|
// ServeHTTP is used to serve the content of GIT API.
|
||
|
func ServeHTTP(w http.ResponseWriter, r *http.Request, c *config.Config) (int, error) {
|
||
|
switch r.Method {
|
||
|
case "POST":
|
||
|
return POST(w, r, c)
|
||
|
default:
|
||
|
return 400, errors.New("Invalid method.")
|
||
|
}
|
||
|
}
|