zworld-em/Plugins/sentry-unreal/Source/ThirdParty/Mac/include/Sentry/SentryDsn.h
2025-05-11 22:07:21 +08:00

20 lines
403 B
Objective-C

#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