mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-21 23:43:27 +01:00
3cbe068fc1
This is technically a breaking change, but given how long ago this field was implemented as well as the fact that this is the default value if the type is not specified, I doubt anybody's explicitly setting it as inmemory
10 lines
158 B
Go
10 lines
158 B
Go
package storage
|
|
|
|
// Type of the store.
|
|
type Type string
|
|
|
|
const (
|
|
TypeMemory Type = "memory" // In-memory store
|
|
TypeSQLite Type = "sqlite" // SQLite store
|
|
)
|