| commit | 48d0a7958a228a164b36c45fd6c24cc89ccc10bd | [log] [tgz] |
|---|---|---|
| author | Byron Ellis <byron.ellis@gmail.com> | Tue Oct 17 18:31:12 2023 -0700 |
| committer | GitHub <noreply@github.com> | Tue Oct 17 18:31:12 2023 -0700 |
| tree | d2ff0ee4ddc4adcf7181eb1909a88818822a8711 | |
| parent | d2c23f2d0b1527d06b85330cbd1537e476e59fc1 [diff] | |
| parent | 210420a7d26b1a7fbbb3bdc44247a5d2a9547c9a [diff] |
Merge pull request #1 from byronellis/main Initial import of code from original repository
Provides the Apache Beam SDK for Swift.
Add the package dependency in your Package.swift:
.package( url: "https://github.com/apache/beam-swift", .branch("main") )
Next, in your target add ApacheBeam to your dependencies:
.target(name: "MyPipeline",dependencies:[ .product(name:"ApacheBeam",package:"beam-swift"), ],