Make RSParser a local package.

This commit is contained in:
Brent Simmons
2025-04-21 20:23:41 -07:00
parent 5f4533cc6b
commit 198aa86cc2
125 changed files with 37541 additions and 39 deletions

View File

@@ -0,0 +1,26 @@
//
// ParserData.m
// RSParser
//
// Created by Brent Simmons on 10/4/17.
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
//
#import "ParserData.h"
@implementation ParserData
- (instancetype)initWithURL:(NSString *)url data:(NSData *)data {
self = [super init];
if (!self) {
return nil;
}
_url = url;
_data = data;
return self;
}
@end