about summary refs log tree commit diff stats
path: root/internal/endpoints/users.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/endpoints/users.go')
-rw-r--r--internal/endpoints/users.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/endpoints/users.go b/internal/endpoints/users.go
new file mode 100644
index 0000000..e315793
--- /dev/null
+++ b/internal/endpoints/users.go
@@ -0,0 +1,10 @@
+package endpoints // import git.tilde.institute/tilde/api/internal/endpoints
+
+import "net/http"
+
+// Users handles the /<format>/users endpoint.
+// Responds with information on the system's users.
+func Users(w http.ResponseWriter, r *http.Request, format string) error {
+
+	return nil
+}