13 lines
253 B
Go
13 lines
253 B
Go
// 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"
|
|
)
|