summaryrefslogtreecommitdiff
path: root/server/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/main.go')
-rw-r--r--server/main.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/server/main.go b/server/main.go
index 23f2959..9ebcb22 100644
--- a/server/main.go
+++ b/server/main.go
@@ -8,16 +8,12 @@ import (
)
func main() {
- server := handleCaesar(TokenAuthenticator())
+ server := handleCaesar()
http.ListenAndServe(":8088", server)
}
-func handleCaesar(auth Authenticator) http.HandlerFunc {
+func handleCaesar() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
- if !auth(r) {
- w.WriteHeader(http.StatusUnauthorized)
- return
- }
if r.Method != http.MethodPost {
w.WriteHeader(http.StatusBadRequest)
return