Skip to main content

Configuring MaestroKit

When your app launches, it should immediately configure the MaestroKit framework.

Functions

static func configure(siteID: String)

Parameters

  • siteID: The unique identifier for your Maestro Site.

Sample Usage

@main
struct MyApp: App {
init() {
MaestroKitManager.configure(siteID: "my-site-id")
}
}