Getting Started
Initialise the SDK
import KapeSDK
@main
struct MyApp: App {
let kape = KapeClient(
configuration: .init(
clientId: "your-client-id",
environment: .production
)
)
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.kapeClient, kape)
}
}
}Authenticate
Fetch Server Locations
Next Steps
Last updated