blob: e02d4b280775ac3da7563e78b15b8b66bd411149 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 Runxi Yu <https://runxiyu.org>
package main
import (
"net/http"
)
// httpHandleUsers is a useless stub.
func httpHandleUsers(writer http.ResponseWriter, _ *http.Request, params map[string]any) {
errorPage501(writer, params)
}
|