From cc1f1e62cd3de15bb2f54a3c85c468e858d00138 Mon Sep 17 00:00:00 2001 From: prettysunflower Date: Wed, 28 May 2025 23:07:01 +0200 Subject: [PATCH] Put again the /ssh /age /gpg endpoints without end / --- keys/init.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/keys/init.go b/keys/init.go index 28e6db4..d52134f 100644 --- a/keys/init.go +++ b/keys/init.go @@ -7,10 +7,15 @@ import ( ) func InitHttpHandlers() { + http.HandleFunc("/keys", keysPage) http.HandleFunc("/keys/", keysPage) + http.HandleFunc("/ssh", sshKey) http.HandleFunc("/ssh/", sshKey) + http.HandleFunc("/age", ageKey) http.HandleFunc("/age/", ageKey) + http.HandleFunc("/gpg", gpgKey) http.HandleFunc("/gpg/", gpgKey) + http.HandleFunc("/gpg/koumbit", gpgKey) http.HandleFunc("/gpg/koumbit/", gpgKey) }