This commit is contained in:
SEAN 2025-11-26 18:48:05 +09:00
parent 12ba9f3faa
commit 83bbb3b9e9

View File

@ -1,29 +0,0 @@
//
// tcmpush.swift
// tcmpush
//
// Created by TA9 on 11/26/25.
//
import UIKit
public class TCMPush: NSObject {
public static let shared = TCMPush()
private override init() {}
public static var isDebugMode: Bool = false
public func configure() {
FCMManager.shared.configure()
}
public func setAPNSToken(_ deviceToken: Data) {
FCMManager.shared.setAPNSToken(deviceToken)
}
// completion .
public func getFCMToken(completion: @escaping (String?, Error?) -> Void) {
FCMManager.shared.getFCMToken(completion: completion)
}
}