mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
10 lines
199 B
Go
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"
|
|
)
|