8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
import env from './index'
|
|
const message = `${env.API_URI}/message`
|
|
|
|
export default {
|
|
msgNotificate: `${message}/my-notifications`,
|
|
msgNotificateTotal: `${message}/my-notifications/noread`,
|
|
msgId: (id: string) => `${message}/my-notifications/${id}`,
|
|
}
|