Skip to content
Snippets Groups Projects
Session+Notifications.swift 263 B
Newer Older
Bruno Muniz's avatar
Bruno Muniz committed
extension Session {
    public func registerNotifications(_ string: String) throws {
        try client.bindings.registerNotifications(string)
    }

    public func unregisterNotifications() throws {
        try client.bindings.unregisterNotifications()
    }
}