mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-13 03:58:45 +00:00
12 lines
349 B
Go
12 lines
349 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/s3api"
|
|
_ "github.com/TecharoHQ/anubis/lib/store/valkey"
|
|
)
|