mirror of
https://github.com/wassname/talk.git
synced 2026-07-04 00:17:54 +08:00
11 lines
160 B
JavaScript
11 lines
160 B
JavaScript
const Subscription = {
|
|
commentAdded(comment) {
|
|
return comment;
|
|
},
|
|
commentEdited(comment) {
|
|
return comment;
|
|
}
|
|
};
|
|
|
|
module.exports = Subscription;
|