summaryrefslogtreecommitdiff
path: root/server/cmd/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/cmd/main.go')
-rw-r--r--server/cmd/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/cmd/main.go b/server/cmd/main.go
index 38ccf37..21cdccc 100644
--- a/server/cmd/main.go
+++ b/server/cmd/main.go
@@ -36,7 +36,7 @@ func main() {
adminHandler := admin.NewAdminHandler(adminStore, guestStore)
mux := http.NewServeMux()
- mux.Handle("/guest/", guestHandler)
+ mux.Handle("/guests/", guestHandler)
mux.Handle("/admin/", adminHandler)
log.Fatal(http.ListenAndServe(":8080", serveHTTP(mux)))
}