gatus/storage/type.go
2025-04-04 19:06:29 -07:00

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
)