gatus/storage/type.go
2021-07-18 17:29:08 -04:00

10 lines
166 B
Go

package storage
// Type of the store.
type Type string
const (
TypeInMemory Type = "inmemory" // In-memory store
TypeSQLite Type = "sqlite" // SQLite store
)