rename Storage interface to Store.

This commit is contained in:
fiatjaf
2023-10-31 16:13:21 -03:00
parent 28fc5b0571
commit 7b4b759d29
8 changed files with 9 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ const (
queryTagsLimit = 10
)
var _ eventstore.Storage = (*PostgresBackend)(nil)
var _ eventstore.Store = (*PostgresBackend)(nil)
func (b *PostgresBackend) Init() error {
db, err := sqlx.Connect("postgres", b.DatabaseURL)