Skip to content

Instantly share code, notes, and snippets.

@Turbiani
Created August 11, 2018 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Turbiani/6f78b230022c4e0df5beec5bd9cebd83 to your computer and use it in GitHub Desktop.
Save Turbiani/6f78b230022c4e0df5beec5bd9cebd83 to your computer and use it in GitHub Desktop.
Entity base
class Entity {
constructor(id) {
this.id = id;
}
}
module.exports = Entity;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment