mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +08:00
10 lines
328 B
Go
10 lines
328 B
Go
package cluster
|
|
|
|
type NodeType = string
|
|
|
|
const (
|
|
Portal NodeType = "portal" // A Portal server for orchestrating a cluster.
|
|
Instance NodeType = "instance" // An Instance can register with a Portal to join a cluster.
|
|
Service NodeType = "service" // Additional Service with computing, sharing, or storage capabilities.
|
|
)
|