Skip to content
Snippets Groups Projects
Commit 88de7798 authored by Anton Sattarov's avatar Anton Sattarov
Browse files

fix for lint

parent 88a02dda
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,12 @@ type Storage interface {
Find(ctx context.Context, coll *collections.Collection, filter *Filter, opts ...*StorageFindOptions) ([]*Item, int, error)
// GetRevision - поиск одной ревизии одной записи
GetRevision(ctx context.Context, coll *collections.Collection, itemID, revisionID string, options ...*StorageFindOptions) (*Item, error)
GetRevision(
ctx context.Context,
coll *collections.Collection,
itemID, revisionID string,
options ...*StorageFindOptions,
) (*Item, error)
// ListRevisions - поиск всех ревизий одной записи
ListRevisions(ctx context.Context, coll *collections.Collection, itemID string, options ...*StorageFindOptions) ([]*Item, int, error)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment