mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-10 18:48:44 +00:00
11 lines
300 B
Go
11 lines
300 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/bbolt"
|
|
_ "github.com/TecharoHQ/anubis/lib/store/memory"
|
|
_ "github.com/TecharoHQ/anubis/lib/store/valkey"
|
|
)
|