mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-18 08:26:45 +02: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
|
|
)
|