Skip to content

Commit

Permalink
refactor: pipeline declare
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod authored and GrapeBaBa committed Oct 21, 2024
1 parent 383f30c commit 155be90
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package io.optimism.v2.derive.pipeline;

public class DerivationPipeline {

DerivationPipeline() {}
}
10 changes: 10 additions & 0 deletions src/main/java/io/optimism/v2/derive/pipeline/PipelineBuilder.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package io.optimism.v2.derive.pipeline;

public class PipelineBuilder {

public PipelineBuilder() {}

public DerivationPipeline build() {
return new DerivationPipeline();
}
}

0 comments on commit 155be90

Please sign in to comment.