SDKs (no submodules) to test automation workflows.
- In Xcode, select File > Add Packages⦠and enter 
https://github.com/konfig-dev/automation-test-submodule-swiftas the repository URL. - Select the latest version number from our tags page.
 - Add the AutomationTestWithSubmodules product to the target of your app.
 
- Add this line to your 
Cartfile: 
github "konfig-dev/automation-test-submodule-swift"- Follow the Carthage installation instructions.
 - In the future, to update to the latest version of the SDK, run the following command: 
carthage update automation-test-submodule-swift 
- Add 
source 'https://github.com/CocoaPods/Specs.git'to yourPodfile - Add 
pod 'AutomationTestWithSubmodules', '~> 1.0.1'to yourPodfile 
Your Podfile should look like:
# Podfile
source 'https://github.com/CocoaPods/Specs.git'
target 'Example' do
  pod 'AutomationTestWithSubmodules', '~> 1.0.1'
end- Run 
pod install 
β― pod install
Analyzing dependencies
Downloading dependencies
Installing AutomationTestWithSubmodules 1.0.1
Generating Pods project
Integrating client project
Pod installation complete! There is 1 dependency from the Podfile and 2 total pods installed.- In the future, to update to the latest version of the SDK, run: 
pod update AutomationTestWithSubmodules 
import AutomationTestWithSubmodules
let automationtestwithsubmodules = AutomationTestWithSubmodulesClient(
    // Defining the base path is optional and defaults to http://google.com
    // basePath: "http://google.com"
)
let helloResponse = try await automationtestwithsubmodules.greetings.hello()Get a simple greeting!!!
let helloResponse = try await automationtestwithsubmodules.greetings.hello()/hello GET
π Back to Table of Contents
This TypeScript package is automatically generated by Konfig