featurebase/dax/dax.go
Travis Turner 20429bb9dc
Remove MDS and replace it with Controller (#2219)
* Remove MDS and replace it with Controller

This commit removes the MDS layer (and package) and shifts Controller
package into its place.

* add pprof/fgprof to serverless http router

---------

Co-authored-by: Matthew Jaffee <jaffee@pilosa.com>
2023-01-30 16:54:12 -06:00

11 lines
346 B
Go

// Package dax defines DAX domain level types.
package dax
// ServicePrefixes are used as the service prefix value in http handlers.
const (
ServicePrefixComputer = "computer"
ServicePrefixController = "controller"
ServicePrefixQueryer = "queryer"
ServicePrefixSnapshotter = "snapshotter"
ServicePrefixWritelogger = "writelogger"
)