mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
13 lines
141 B
Go
13 lines
141 B
Go
|
package role
|
||
|
|
||
|
//go:generate stringer -type=Role
|
||
|
|
||
|
// Role is a peer's role.
|
||
|
type Role uint
|
||
|
|
||
|
const (
|
||
|
Unknown Role = iota
|
||
|
Coordinator
|
||
|
Node
|
||
|
)
|