mirror of
https://github.com/harness/drone.git
synced 2025-05-18 18:09:56 +08: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
|
|
)
|