command/revoke: revoke

This commit is contained in:
Mitchell Hashimoto
2015-03-31 19:21:02 -07:00
parent 4cbe26b726
commit ea234d9cbf
8 changed files with 218 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ func Handler(core *vault.Core) http.Handler {
mux.Handle("/v1/sys/seal", handleSysSeal(core))
mux.Handle("/v1/sys/unseal", handleSysUnseal(core))
mux.Handle("/v1/sys/mounts/", handleSysMounts(core))
mux.Handle("/v1/sys/revoke/", handleSysRevoke(core))
mux.Handle("/v1/", handleLogical(core))
return mux
}