var to const

This commit is contained in:
iVampireSP.com 2023-10-24 14:43:27 +08:00
parent e2f4eae246
commit 466bc6a0c6
No known key found for this signature in database
GPG Key ID: 2F7B001CA27A8132
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import {Router} from 'express'
var router = Router()
const router = Router()
/* GET home page. */
router.get('/', function(req, res, next) {

View File

@ -1,5 +1,5 @@
import {Router} from 'express'
var router = Router()
const router = Router()
/* GET users listing. */
router.get('/', function(req, res, next) {