mirror of
https://github.com/danbulant/covid
synced 2026-06-19 06:31:12 +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 PORT = 1025;
|
||||
|
||||
const cases = {};
|
||||
var cases = {};
|
||||
|
||||
app.get("/", (req, res)=>{
|
||||
res.json({
|
||||
|
|
|
|||
Loading…
Reference in a new issue