faas/gateway/handlers/serviceauthinjector.go
Alex Ellis 1cf030da48 Differentiate external service auth from user auth
Signed-off-by: Alex Ellis <alexellis2@gmail.com>
2019-06-09 20:08:39 +01:00

8 lines
94 B
Go

package handlers
import "net/http"
type AuthInjector interface {
Inject(r *http.Request)
}