photoprism/pkg/http/header/proto.go
Michael Mayer 149f5e5731 CI: Apply Go linter recommendations to remaining "pkg/..." code #5330
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-11-22 16:14:43 +01:00

10 lines
199 B
Go

package header
var (
// ProtoHttp is the HTTP scheme.
ProtoHttp = "http"
// ProtoHttps is the HTTPS scheme.
ProtoHttps = "https"
// ProtoWss is the secure WebSocket scheme.
ProtoWss = "wss"
)