#import <Foundation/Foundation.h>

// C-exported by Swift in ChottuLinkDeepLinkHook.swift
extern void cl_bootstrap_deeplink_hook(void);

__attribute__((constructor))
static void cl_autobootstrap(void) {
    // Ensure deep-link swizzling happens at app load, before UIApplicationDelegate callbacks
    if (cl_bootstrap_deeplink_hook) {
        cl_bootstrap_deeplink_hook();
    }
}


