import CfCustomNotification from "./CfCustomNotification"
import CfBrowserNotification from "./CfBrowserNotification"

import { NotificationDispatcher } from "./typings";

export default class NotificationFactory {
    static getNotificationEngine(): NotificationDispatcher {
        //return new CfBrowserNotification()
        return new CfCustomNotification()
    }
}