11 lines
333 B
Go
11 lines
333 B
Go
// Package all is a meta-package that imports all store implementations.
|
|
//
|
|
// This is a HACK to make tests work consistently.
|
|
package all
|
|
|
|
import (
|
|
_ "git.sad.ovh/sophie/nuke/lib/store/bbolt"
|
|
_ "git.sad.ovh/sophie/nuke/lib/store/memory"
|
|
_ "git.sad.ovh/sophie/nuke/lib/store/s3api"
|
|
_ "git.sad.ovh/sophie/nuke/lib/store/valkey"
|
|
)
|