mirror of
https://github.com/grafana/loki.git
synced 2026-03-13 09:33:58 +08:00
Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com> Co-authored-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
12 lines
315 B
Go
12 lines
315 B
Go
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package errors
|
|
|
|
import "net/http"
|
|
|
|
// Unauthenticated returns an unauthenticated error.
|
|
func Unauthenticated(scheme string) Error {
|
|
return New(http.StatusUnauthorized, "unauthenticated for %s", scheme)
|
|
}
|