Skip to content

Commit

Permalink
feat: Add missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
jachym-tousek-keboola committed Jun 6, 2024
1 parent d703cea commit 5a591f0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions internal/pkg/service/stream/api/service/aggregation.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package service

import (
"context"

"github.com/keboola/keboola-as-code/internal/pkg/service/common/errors"
"github.com/keboola/keboola-as-code/internal/pkg/service/stream/api/gen/stream"
"github.com/keboola/keboola-as-code/internal/pkg/service/stream/dependencies"
)

func (s *service) AggregateSources(ctx context.Context, d dependencies.BranchRequestScope, payload *stream.AggregateSourcesPayload) (res *stream.AggregationSourcesResult, err error) {
return nil, errors.NewNotImplementedError()
}

0 comments on commit 5a591f0

Please sign in to comment.