linting
This commit is contained in:
@@ -118,15 +118,15 @@ func (r *repositoryStub) ListIDs(ctx context.Context, query builder.Query) ([]bs
|
||||
if r.ListIDsFunc != nil {
|
||||
return r.ListIDsFunc(ctx, query)
|
||||
}
|
||||
return nil, nil
|
||||
return []bson.ObjectID{}, nil
|
||||
}
|
||||
|
||||
func (r *repositoryStub) ListPermissionBound(ctx context.Context, query builder.Query) ([]model.PermissionBoundStorable, error) {
|
||||
return nil, nil
|
||||
return []model.PermissionBoundStorable{}, nil
|
||||
}
|
||||
|
||||
func (r *repositoryStub) ListAccountBound(ctx context.Context, query builder.Query) ([]model.AccountBoundStorable, error) {
|
||||
return nil, nil
|
||||
return []model.AccountBoundStorable{}, nil
|
||||
}
|
||||
|
||||
func (r *repositoryStub) Collection() string {
|
||||
|
||||
Reference in New Issue
Block a user