relay/internal/config/const.go
2022-08-27 21:02:45 -07:00

11 lines
309 B
Go

package config
const (
// ServerRoleActivityPub represents the activity pub server role.
ServerRoleActivityPub = "activity-pub"
// ServerRoleRobots represents the static asset server role.
ServerRoleRobots = "robots"
// ServerRoleWebapp represents the webapp server role.
ServerRoleWebapp = "webapp"
)