1
0
mirror of https://github.com/TwiN/gatus.git synced 2025-03-07 11:32:04 +01:00
gatus/storage/type.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
)