Skip to content

Instantly share code, notes, and snippets.

@zaoldyeck
Created July 19, 2018 08:29
Show Gist options
  • Save zaoldyeck/b1a81c8eeb8a7831fd1123c5c1c8d3de to your computer and use it in GitHub Desktop.
Save zaoldyeck/b1a81c8eeb8a7831fd1123c5c1c8d3de to your computer and use it in GitHub Desktop.
module.exports = class Message {
constructor(data) {
this.data = data
}
toLineMessage() {
return this.data
}
toMessengerMessage() {
return this.data
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment