Microservice template

This commit is contained in:
2021-11-11 01:26:48 -05:00
parent 454f0b2426
commit a1ca5d3865
14 changed files with 3440 additions and 0 deletions
@@ -0,0 +1,10 @@
/**
* @file
* Set up the app
*/
var _ = require('underscore');
var db = require('./db');
module.exports = function () {
db();
};