950fcd57e27b8c1fdedf59a9ca88332ed7544fe7
[releng.git] / utils / test / vnfcatalogue / VNF_Catalogue / routes / index.js
1 /*******************************************************************************
2  * Copyright (c) 2017 Kumar Rishabh and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9
10 var express = require('express');
11 var router = express.Router();
12
13 /* GET VNF_Catalogue Home Page. */
14 router.get('/', function(req, res) {
15   res.render('index', { title: 'Express' });
16 });
17
18 module.exports = router;