Skip to content
Snippets Groups Projects
serviceauthinjector.go 247 B
Newer Older
package middleware
// AuthInjector is an interface for injecting authentication information into a request
// which will be proxied or made to a remote/upstream service.
type AuthInjector interface {
	Inject(r *http.Request)
}