zworld-em/Plugins/sentry-unreal/Source/ThirdParty/Mac/include/Sentry/SentryDsn.h

20 lines
403 B
C
Raw Normal View History

2025-05-11 22:07:21 +08:00
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface SentryDsn : NSObject
@property (nonatomic, strong, readonly) NSURL *url;
- (_Nullable instancetype)initWithString:(NSString *)dsnString
didFailWithError:(NSError *_Nullable *_Nullable)error;
- (NSString *)getHash;
- (NSURL *)getStoreEndpoint;
- (NSURL *)getEnvelopeEndpoint;
@end
NS_ASSUME_NONNULL_END