17 lines
249 B
Objective-C
17 lines
249 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// iOS (App)
|
|
//
|
|
// Created by Tomek Wójcik on 21/08/2025.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class HPAuthFlow;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonnull) HPAuthFlow *authFlow;
|
|
|
|
@end
|