mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
17 lines
382 B
Objective-C
Executable file
17 lines
382 B
Objective-C
Executable file
//
|
|
// OSKLinkShorteningUtility.h
|
|
// Unread
|
|
//
|
|
// Created by Jared Sinclair 11/19/13.
|
|
// Copyright (c) 2013 Nice Boy LLC. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface OSKLinkShorteningUtility : NSObject
|
|
|
|
+ (BOOL)shorteningRecommended:(NSString *)longURL;
|
|
|
|
+ (void)shortenURL:(NSString *)longURL completion:(void(^)(NSString *shortURL))completion;
|
|
|
|
@end
|