refactor: add root store (#1153)

This commit is contained in:
Jonas Plum
2025-09-21 11:47:29 +02:00
committed by GitHub
parent d9f759c879
commit 9da90e7cc8
15 changed files with 713 additions and 26 deletions

View File

@@ -11,11 +11,11 @@ import (
"github.com/go-chi/chi/v5"
"github.com/tus/tusd/v2/pkg/filelocker"
tusd "github.com/tus/tusd/v2/pkg/handler"
"github.com/tus/tusd/v2/pkg/rootstore"
"github.com/SecurityBrewery/catalyst/app/auth"
"github.com/SecurityBrewery/catalyst/app/database"
"github.com/SecurityBrewery/catalyst/app/database/sqlc"
"github.com/SecurityBrewery/catalyst/app/rootstore"
"github.com/SecurityBrewery/catalyst/app/upload"
)