Merge commit '8594f92da54fabfc55aadff87ec1a4cbaee83768'

This commit is contained in:
Peter Iakovlev
2018-12-11 17:52:52 +04:00
2 changed files with 8 additions and 0 deletions

View File

@@ -1,5 +1,9 @@
import Foundation
#if os(macOS)
import PostboxMac
#else
import Postbox
#endif
public indirect enum JSON: PostboxCoding, Equatable {
case null

View File

@@ -1,5 +1,9 @@
import Foundation
#if os(macOS)
import PostboxMac
#else
import Postbox
#endif
public protocol SplitTestEvent: RawRepresentable where RawValue == String {
}