mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
421 B
C
21 lines
421 B
C
10 years ago
|
//
|
||
|
// TextSecureKitEnv.h
|
||
|
// Pods
|
||
|
//
|
||
|
// Created by Frederic Jacobs on 05/12/15.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
#import "ContactsManagerProtocol.h"
|
||
|
#import "NotificationsProtocol.h"
|
||
|
|
||
|
@interface TextSecureKitEnv : NSObject
|
||
|
|
||
|
@property (nonatomic, retain) id<ContactsManagerProtocol> contactsManager;
|
||
|
@property (nonatomic, retain) id<NotificationsProtocol> notificationsManager;
|
||
|
|
||
|
+ (instancetype)sharedEnv;
|
||
|
|
||
|
@end
|