gatus/storage/type.go

10 lines
166 B
Go
Raw Normal View History

2021-07-16 04:07:30 +02:00
package storage
// Type of the store.
type Type string
const (
TypeInMemory Type = "inmemory" // In-memory store
TypeSQLite Type = "sqlite" // SQLite store
)