mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
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
|
|
)
|