Skip to content

Instantly share code, notes, and snippets.

@jeffijoe
Created September 6, 2016 09:46
Show Gist options
  • Save jeffijoe/d40e891896a04d7292aba8e1c544afe6 to your computer and use it in GitHub Desktop.
Save jeffijoe/d40e891896a04d7292aba8e1c544afe6 to your computer and use it in GitHub Desktop.
Snippet for my Medium article
export default class TodosService {
constructor({ db }) {
this.db = db
}
getTodos() {
return this.db.query('select * from todos')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment