Advertisement
Guest User

Untitled

a guest
May 5th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. let DB = require('db_facade');
  2. // Now you can use DB as its already created, this means we dont need to create it everywhere we use it.
  3.  
  4. export default class Controller{
  5. postIndex(req, res){
  6. DB.insert('table', req.get('data'));
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement