16 lines
358 B
JavaScript
16 lines
358 B
JavaScript
import express from 'express'
|
|
|
|
import {getData4map} from "../actions/data4map.js"
|
|
import * as cTable from "../utilities/commands.js"
|
|
import * as ERR from "../utilities/errortexts.js"
|
|
|
|
const router = express.Router();
|
|
|
|
/* GET home page. */
|
|
|
|
router.get('/', function(req, res, next) {
|
|
res.status(200).json({message: ERR.NOTHIMG})
|
|
});
|
|
|
|
export default router
|