commit | 1c32ef777b1bdea8905cd275a9a90f111e6c01f6 | [log] [tgz] |
---|---|---|
author | Byron Ellis <byronellis@google.com> | Wed Oct 04 11:29:41 2023 -0700 |
committer | Byron Ellis <byronellis@google.com> | Wed Oct 04 11:29:41 2023 -0700 |
tree | 8afcd6fbdbf524e9fd6b1aab81ee82cc040b4e29 | |
parent | dd1254c75dd9b67407bdd1558503ae91d3ee3eb5 [diff] |
Added README
Provides Apache Beam 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"), ],