From bd5a54d9e99d0badb892dd231dd073eab139e7ac Mon Sep 17 00:00:00 2001 From: insanity Date: Thu, 26 Oct 2017 11:46:12 +0900 Subject: [PATCH] ing --- .../notification/api/service/NotificationService.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/ts/@overflow/notification/api/service/NotificationService.ts 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;