Skip to content

Update README.md #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
As we all know, any data workflow comes down to three major steps - Read, Transform and Write. Keeping that in mind, we have created a generic DSL (FlowDSL) that can be used for any data workload. Currently, only Spark is supported but the support for other frameworks like BigQuery, Beam, Kafka, etc. can be extended easily. This library also uses some of our other open sourced libraries like Data IO and Data Expectations which also work on the concept of a Free DSL and can also be extended to other frameworks easily.

## DSL
```
```scala
object FlowDSL {

final case class LoadSources[A](sources: List[Source[A]]) extends FlowDSL[A]
Expand Down