mirror of https://github.com/oxen-io/session-ios
Respond to CR.
parent
7c1f1882d8
commit
275414cbda
@ -0,0 +1,17 @@
|
||||
//
|
||||
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
#if DEBUG
|
||||
|
||||
@objc
|
||||
public class OWSMockSyncManager: NSObject, OWSSyncManagerProtocol {
|
||||
|
||||
@objc public func sendConfigurationSyncMessage() {
|
||||
Logger.info("")
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
@ -0,0 +1,13 @@
|
||||
//
|
||||
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||||
//
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@protocol OWSSyncManagerProtocol <NSObject>
|
||||
|
||||
- (void)sendConfigurationSyncMessage;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
Loading…
Reference in New Issue