You've already forked hotpocket
I smell a drastic change to auth flow in the Mac app... Let's see if it gets approved this time :D.
20 lines
363 B
Objective-C
20 lines
363 B
Objective-C
//
|
|
// AuthorizationProgressViewController.h
|
|
// HotPocket (macOS)
|
|
//
|
|
// Created by Tomek Wójcik on 20/09/2025.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface AuthorizationProgressViewController : NSViewController
|
|
|
|
@property IBOutlet NSProgressIndicator *progressIndicator;
|
|
@property NSString *progressLabelTitle;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|