mirror of
https://github.com/wassname/talk.git
synced 2026-07-24 13:20:47 +08:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
export function createNotificationService(pym) {
|
|
return {
|
|
success(msg) {
|
|
pym.sendMessage('coral-alert', `success|${msg}`);
|
|
},
|
|
error(msg) {
|
|
pym.sendMessage('coral-alert', `error|${msg}`);
|
|
},
|
|
info(msg) {
|
|
pym.sendMessage('coral-alert', `info|${msg}`);
|
|
},
|
|
};
|
|
}
|