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