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