authenticate: remove /.pomerium/callback handler (#5553)

This commit is contained in:
Caleb Doxsey 2025-03-28 13:04:25 -06:00 committed by GitHub
parent bed6770e16
commit 1a199eb9f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 0 additions and 70 deletions

View file

@ -694,14 +694,6 @@ func (m mockDataBrokerServiceClient) Put(ctx context.Context, in *databroker.Put
return m.put(ctx, in, opts...)
}
func mustParseURL(rawurl string) *url.URL {
u, err := url.Parse(rawurl)
if err != nil {
panic(err)
}
return u
}
// stubFlow is a stub implementation of the flow interface.
type stubFlow struct {
verifySignatureErr error