blob: df0c99ac58f88e8a4105fabede587a7c66e70006 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: AGPL-3.0-only
// SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
package main
import (
"net/http"
)
func httpHandleUsers(w http.ResponseWriter, _ *http.Request, _ map[string]any) {
http.Error(w, "Not implemented", http.StatusNotImplemented)
}
|