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