forked from Ivasoft/mattermost-mobile
* upgrade to RN 68 (old arch) * remove test setup unused & commented mock * Android target set to 30 * Fix theme when opening app from push notification * upgrade common mark
19 lines
402 B
Swift
19 lines
402 B
Swift
//
|
|
// GekidouWrapper.swift
|
|
// Mattermost
|
|
//
|
|
// Created by Elias Nahum on 06-04-22.
|
|
// Copyright © 2022 Facebook. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import Gekidou
|
|
|
|
@objc class GekidouWrapper: NSObject {
|
|
@objc public static let `default` = GekidouWrapper()
|
|
|
|
@objc func postNotificationReceipt(_ userInfo: [AnyHashable:Any]) {
|
|
Network.default.postNotificationReceipt(userInfo)
|
|
}
|
|
}
|