-
-
Save cardoso/9946fda83650e60113d764a7e3198226 to your computer and use it in GitHub Desktop.
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
import VoxeetSDK | |
import VoxeetUXKit | |
extension ConsultViewController { | |
func startCall() { | |
let options = VTConferenceOptions() | |
options.alias = "patient+doctor" | |
VoxeetSDK.shared.conference.create(options: options, success: { conf in | |
VoxeetSDK.shared.conference.join(conference: conf) | |
}, fail: { error in | |
print(error) | |
}) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment