about summary refs log tree commit diff stats
path: root/internal/endpoints/usercount.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2020-05-07 19:34:22 -0400
committerBen Morrison <ben@gbmor.dev>2020-05-08 00:57:44 -0400
commite6ce5f3caaeeaebe2fce89a837c0d81d4d000fae (patch)
tree5fd2758cf63d736e68faec42854aeec00e782214 /internal/endpoints/usercount.go
parentfa8162c2100ef2198b38879cc888c178e4e29185 (diff)
downloadapi-e6ce5f3caaeeaebe2fce89a837c0d81d4d000fae.tar.gz
moved endpoint files out of internal module
Diffstat (limited to 'internal/endpoints/usercount.go')
-rw-r--r--internal/endpoints/usercount.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/internal/endpoints/usercount.go b/internal/endpoints/usercount.go
deleted file mode 100644
index 1e76071..0000000
--- a/internal/endpoints/usercount.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package endpoints // import git.tilde.institute/tilde/api/internal/endpoints
-
-import "net/http"
-
-// UserCount handles the /<format>/usercount endpoint.
-// Responds with the number of registered users on the system.
-func UserCount(w http.ResponseWriter, r *http.Request, format string) error {
-
-	return nil
-}