nuke/lib/store/all/all.go
fucksophie 02b9aebbe5
Some checks failed
Docker image builds / build (push) Failing after 4m22s
NUKE
2026-02-07 14:27:38 +02:00

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"
)