This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
basic folders added for aggregation refactoring
- Loading branch information
1 parent
d8f2b45
commit e900295
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package aggregator | ||
|
||
type Aggregator struct { | ||
} | ||
|
||
func New() Aggregator { | ||
return Aggregator{} | ||
} | ||
|
||
func (a *Aggregator) Aggregate() { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package silencer | ||
|
||
type Silencer struct { | ||
} | ||
|
||
func New() Silencer { | ||
return Silencer{} | ||
} | ||
|
||
func (s *Silencer) Silence() { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package workflow | ||
|
||
import "github.com/0xPolygon/beethoven/silencer" | ||
|
||
type Workflow struct { | ||
silencer silencer.Silencer, | ||
sequencer sequencer.Sequencer, | ||
aggregator aggregator.Aggregator, | ||
} | ||
|
||
func New() Workflow { | ||
return Workflow{} | ||
} | ||
|
||
func (w *Workflow) Execute() { | ||
|
||
} |