16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Dashboard services
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export * from './caseAPI';
|
|
export * from './websocketService';
|
|
export * from './notificationService';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|