-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Martin
committed
Nov 16, 2023
1 parent
7ccd03d
commit e516211
Showing
4 changed files
with
39 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,14 +14,12 @@ struct ContentView: View { | |
Button("Start Flow") { | ||
Task { | ||
try await HVCameraExterior.sharedInstance.startCaptureSession( | ||
settings: .init(), | ||
info: .init( | ||
firstTimeUser: true, | ||
jobID: 12345, | ||
settings: HVCameraSettings(), | ||
info: CaptureJobInformation( | ||
clientIdentifier: "DEADBEEF_DEAD_BEEF_DEAD_BEEFDEADBEEF", | ||
userEmail: "[email protected]", | ||
uploadSecret: "DEADBEEF_DEAD_BEEF_DEAD_BEEFDEADBEEF", | ||
isTestJob: true | ||
jobID: 12345, | ||
userEmail: "[email protected]" | ||
) | ||
) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// The Swift Programming Language | ||
// https://docs.swift.org/swift-book | ||
|
||
@_exported import _HVAVCamera | ||
@_exported import _HVCore | ||
@_exported import _HVCameraExterior |