20 lines
403 B
C
20 lines
403 B
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
|