Major fixes and improvements
This commit is contained in:
9
storage/type.go
Normal file
9
storage/type.go
Normal file
@ -0,0 +1,9 @@
|
||||
package storage
|
||||
|
||||
// Type of the store.
|
||||
type Type string
|
||||
|
||||
const (
|
||||
TypeInMemory Type = "inmemory" // In-memory store
|
||||
TypeSQLite Type = "sqlite" // SQLite store
|
||||
)
|
Reference in New Issue
Block a user