Put again the /ssh /age /gpg endpoints without end /

This commit is contained in:
2025-05-28 23:07:01 +02:00
parent 63d03b18e1
commit cc1f1e62cd

View File

@@ -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)
}