mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-10 10:38:45 +00:00
9 lines
201 B
Go
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"
|
|
)
|