Asymmetrik/node-rest-starter

View on GitHub
src/app/core/config/config.routes.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Router } from 'express';

import * as config from './config.controller';

const router = Router();

// For now, just a single get for the global client configuration
router.route('/config').get(config.read);

export = router;