Files
mattermost-mobile/ios/GekidouWrapper.swift
Elias Nahum b530dbeb09 [Gekidou] upgrade to RN 68 (old arch) (#6138)
* 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
2022-04-08 12:40:44 -04:00

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)
}
}