123456789101112131415161718192021222324252627282930313233343536 |
- //
- // CCShareNetwork.m
- // Crypto Cloud / Nextcloud Project
- //
- // Created by Marino Faggiana on 13/02/16.
- // Copyright © 2016 TWS. All rights reserved.
- //
- #import "CCShareNetwork.h"
- @implementation CCShareNetwork
- - (id)init
- {
- self =[super init];
-
- if (self) {
-
- }
- return self;
- }
- + (DBSession*)sharedDBSession
- {
- static DBSession* sharedDBSession= nil;
- if (sharedDBSession == nil) {
-
- NSString *appKey = appKeyCryptoCloud;
- NSString *appSecret = appSecretCryptoCloud;
-
- sharedDBSession = [[DBSession alloc] initWithAppKey:appKey appSecret:appSecret root:kDBRootDropbox];
- }
- return sharedDBSession;
- }
- @end
|