hrms-checkin/src/api/api.message.ts

8 lines
197 B
TypeScript
Raw Normal View History

import env from './index'
const message = `${env.API_URI}/message`
export default {
msgNotificate: `${message}/my-notifications`,
msgId: (id: string) => `${message}/my-notifications/${id}`,
}