github.com/altipla-consulting/ravendb-go-client@v0.1.3/index_priority.go (about)

     1  package ravendb
     2  
     3  type IndexPriority = string
     4  
     5  const (
     6  	IndexPriorityLow    = "Low"
     7  	IndexPriorityNormal = "Normal"
     8  	IndexPriorityHigh   = "High"
     9  )