📦 update redis

This commit is contained in:
Fenny
2020-10-31 07:55:18 +01:00
parent d8f91a8471
commit 9152ce37fe
10 changed files with 254 additions and 22 deletions

View File

@@ -8,14 +8,14 @@ import (
type Storage struct {
}
// Config defines the config for mysql storage.
// Config defines the config for storage.
type Config struct {
}
// ConfigDefault is the default config
var ConfigDefault = Config{}
// New creates a new mysql storage
// New creates a new storage
func New(config ...Config) Storage {
return Storage{}
}