mirror of
https://github.com/TwiN/gatus.git
synced 2025-03-20 02:17: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
|
||
|
)
|