import SwiftUI
import LangCat
@main
struct MyApp: App {
init() {
// 1. Initialize the SDK. Method Swizzling handles the rest.
LangCat.initialize(
apiKey: "lc_prod_123456",
environment: .production
)
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}