commit | af3d4e58f2bc80a34da9dafcb4142a4b6d05bcfc | [log] [tgz] |
---|---|---|
author | Byron Ellis <byron.ellis@gmail.com> | Tue Oct 17 18:27:41 2023 -0700 |
committer | GitHub <noreply@github.com> | Tue Oct 17 18:27:41 2023 -0700 |
tree | 7082d2d0a7d6fcfc598b41932a423492e733892b | |
parent | 6e9491e05506ab535bbde69de0ee337642ba450f [diff] |
Fix typo Co-authored-by: Robert Burke <lostluck@users.noreply.github.com>
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"), ],