Skip to content

Instantly share code, notes, and snippets.

@siscia
Last active August 29, 2015 13:56
Show Gist options
  • Save siscia/9160953 to your computer and use it in GitHub Desktop.
Save siscia/9160953 to your computer and use it in GitHub Desktop.
var express = require('express');
app = express();
app.get('/tick/clean-database', function(req, res) {
/*Daily job*/
cleanDatabase()
});
app.post('/tick/bill-custumer', function(req, res) {
/*Monthly job*/
billCustumers()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment