blob: 8546d4d141445e5edc7574a86ef9160dd1f4ff8b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// APIClient.h
// Juick
//
// Created by Vitaly Takmazov on 22/08/16.
// Copyright © 2016 com.juick. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface APIClient : NSObject
@property (nonatomic, retain) AFHTTPSessionManager *manager;
+(APIClient *) sharedClient;
@end
|