Updated package name

This commit is contained in:
2025-05-08 11:32:21 +03:00
parent 13744f0500
commit 9d04f43104
16 changed files with 30 additions and 30 deletions

View File

@ -4,9 +4,9 @@ import (
"fmt"
"path/filepath"
"unprism.ru/KRBL/agate/store"
"unprism.ru/KRBL/agate/store/filesystem"
"unprism.ru/KRBL/agate/store/sqlite"
"gitea.unprism.ru/KRBL/Agate/store"
"gitea.unprism.ru/KRBL/Agate/store/filesystem"
"gitea.unprism.ru/KRBL/Agate/store/sqlite"
)
// NewDefaultMetadataStore creates a new SQLite-based metadata store.
@ -39,4 +39,4 @@ func InitDefaultStores(baseDir string) (store.MetadataStore, store.BlobStore, er
}
return metadataStore, blobStore, nil
}
}