Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
416 Bytes
package auth
// RouteInfo represents path information for the current request.
type RouteInfo struct {
// Relative provides a path, relative to the base of the current
// identity provider.
RelativePath string
// CurrentURL is calculated using the --public-url or AuthRefererURLs and
// the current auth attempt's referer. It does not include
// query parameters of the current request.
CurrentURL string
}