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.
18 lines
370 B
C
18 lines
370 B
C
8 years ago
|
//
|
||
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
||
|
//
|
||
|
|
||
9 years ago
|
#import "Environment.h"
|
||
11 years ago
|
|
||
|
@interface Release : NSObject
|
||
|
|
||
|
/// Connects to actual production infrastructure
|
||
8 years ago
|
+ (Environment *)releaseEnvironment;
|
||
11 years ago
|
|
||
8 years ago
|
+ (Environment *)stagingEnvironment;
|
||
10 years ago
|
|
||
11 years ago
|
/// Fake environment with no logging
|
||
9 years ago
|
+ (Environment *)unitTestEnvironment:(NSArray *)testingAndLegacyOptions;
|
||
11 years ago
|
|
||
|
@end
|