Added redis backend, backend selection mechanism

This commit is contained in:
2023-10-26 20:29:11 +02:00
parent 17086b1abf
commit d5af575e74
11 changed files with 393 additions and 81 deletions

12
backend/all/importAll.go Normal file
View File

@@ -0,0 +1,12 @@
// Shortcut to include all available backends
// Usage:
//
// ```
// import _ "git.thequux.com/thequux/ipasso/backend/all"
// ```
package all
import (
_ "git.thequux.com/thequux/ipasso/backend/null"
_ "git.thequux.com/thequux/ipasso/backend/redis"
)