.examples
.github
alerting
client
config
controller
core
docs
jsonpath
metrics
pattern
security
storage
store
config.go
type.go
test
testdata
util
watchdog
web
.dockerignore
.gitattributes
.gitignore
Dockerfile
LICENSE
Makefile
README.md
config.yaml
go.mod
go.sum
main.go
11 lines
216 B
Go
11 lines
216 B
Go
package storage
|
|
|
|
// Type of the store.
|
|
type Type string
|
|
|
|
const (
|
|
TypeMemory Type = "memory" // In-memory store
|
|
TypeSQLite Type = "sqlite" // SQLite store
|
|
TypePostgres Type = "postgres" // Postgres store
|
|
)
|