Skip to content

Commit

Permalink
httptransport: remove key management API
Browse files Browse the repository at this point in the history
Signed-off-by: Hank Donnay <hdonnay@redhat.com>
  • Loading branch information
hdonnay committed Jul 15, 2021
1 parent 0285c30 commit fee8bc5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 430 deletions.
8 changes: 8 additions & 0 deletions httptransport/gone.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package httptransport

import "net/http"

var gone = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
const msg = `{"code":"gone","message":"endpoint removed"}`
http.Error(w, msg, http.StatusGone)
})
79 changes: 0 additions & 79 deletions httptransport/keybyidhandler.go

This file was deleted.

151 changes: 0 additions & 151 deletions httptransport/keysbyidhandler_test.go

This file was deleted.

61 changes: 0 additions & 61 deletions httptransport/keyshandler.go

This file was deleted.

0 comments on commit fee8bc5

Please sign in to comment.