Files
photoprism/internal/service/cluster/const.go
2025-09-15 13:40:56 +02:00

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.
)