mirror of
https://github.com/openfaas/faas.git
synced 2025-06-09 08:46:48 +00:00
8 lines
94 B
Go
8 lines
94 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
type AuthInjector interface {
|
|
Inject(r *http.Request)
|
|
}
|