mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
20 lines
373 B
Objective-C
20 lines
373 B
Objective-C
//
|
|
// GoogleReader.h
|
|
// Reader Helper
|
|
//
|
|
// Created by Geoff Hulette on 7/28/08.
|
|
// Copyright 2008 Collidescope. All rights reserved.
|
|
//
|
|
// Based on the reader API documentation at http://www.niallkennedy.com/blog/2005/12/google-reader-api.html
|
|
//
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface GoogleReader : NSObject {
|
|
}
|
|
|
|
+(void)subscribeToFeed:(NSString *)feedURL;
|
|
|
|
@end
|