mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
12 lines
321 B
Go
12 lines
321 B
Go
package ctrl
|
|
|
|
import (
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
"net/http"
|
|
)
|
|
|
|
func ReportHandler(ctx App, res http.ResponseWriter, req *http.Request) {
|
|
// This function is quite dumb but that's only because the reporting logic is called before
|
|
// this function is called.
|
|
SendSuccessResult(res, nil)
|
|
}
|