Added mac imports

This commit is contained in:
Ilya Laktyushin 2018-12-11 01:25:24 +04:00
parent bb12e8c99c
commit 591aeff1f3
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 {
}