mirror of
https://github.com/danbulant/covid
synced 2026-07-07 04:00:52 +00:00
Fix const
This commit is contained in:
parent
75e247c26e
commit
96c141243a
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ const express = require("express");
|
||||||
const app = express();
|
const app = express();
|
||||||
const PORT = 1025;
|
const PORT = 1025;
|
||||||
|
|
||||||
const cases = {};
|
var cases = {};
|
||||||
|
|
||||||
app.get("/", (req, res)=>{
|
app.get("/", (req, res)=>{
|
||||||
res.json({
|
res.json({
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue