mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-30 22:34:15 -05:00
11 lines
206 B
Go
11 lines
206 B
Go
|
package protocol
|
||
|
|
||
|
// Perspective determines if we're acting as a server or a client
|
||
|
type Perspective int
|
||
|
|
||
|
// the perspectives
|
||
|
const (
|
||
|
PerspectiveServer Perspective = 1
|
||
|
PerspectiveClient Perspective = 2
|
||
|
)
|