mirror of
https://github.com/Luzifer/ots.git
synced 2024-10-01 01:06:09 -04:00
ea631beeef
Signed-off-by: Knut Ahlers <knut@ahlers.me>
26 lines
461 B
Go
26 lines
461 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
var errSecretNotFound = errors.New("Secret not found")
|
|
|
|
type storage interface {
|
|
Create(secret string, expireIn time.Duration) (string, error)
|
|
ReadAndDestroy(id string) (string, error)
|
|
}
|
|
|
|
func getStorageByType(t string) (storage, error) {
|
|
switch t {
|
|
case "mem":
|
|
return newStorageMem(), nil
|
|
case "redis":
|
|
return newStorageRedis()
|
|
default:
|
|
return nil, fmt.Errorf("Storage type %q not found", t)
|
|
}
|
|
}
|