Files
anubis-mirror/lib/store/all/all.go
2025-07-02 23:17:51 +00:00

9 lines
201 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 (
_ "github.com/TecharoHQ/anubis/lib/store/memory"
)