const express = require('express');
const router = new express.Router();
router.post('/consumption', require('./consumption'));
router.post('/invoice', require('./invoice'));
module.exports = router;