mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-10-04 05:41:59 +08:00
* feat(lib/store): add s3api storage backend Signed-off-by: Xe Iaso <me@xeiaso.net> * docs(store/s3api): replace fake S3 API keys with the bee movie script Signed-off-by: Xe Iaso <me@xeiaso.net> * docs(store/s3api): fix spelling sin Signed-off-by: Xe Iaso <me@xeiaso.net> * fix(store/s3api): remove vestigal experiment Signed-off-by: Xe Iaso <me@xeiaso.net> * chore: spelling Signed-off-by: Xe Iaso <me@xeiaso.net> * chore: spelling Signed-off-by: Xe Iaso <me@xeiaso.net> * chore(store/s3api): support IsPersistent call Ref #1088 Signed-off-by: Xe Iaso <me@xeiaso.net> * chore: spelling Signed-off-by: Xe Iaso <me@xeiaso.net> * chore(test): go mod tidy Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
11 lines
349 B
Go
11 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"
|
|
)
|