diff --git a/src/ts/@overflow/notification/api/service/NotificationService.ts b/src/ts/@overflow/notification/api/service/NotificationService.ts new file mode 100644 index 0000000..4878628 --- /dev/null +++ b/src/ts/@overflow/notification/api/service/NotificationService.ts @@ -0,0 +1,10 @@ +import { Service } from '@overflow/commons/api/service'; + +export class NotificationService extends Service { + public constructor() { + super(); + } + +} + +export default NotificationService;