mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 06:31:39 +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;
|