소스 검색

Added tz offset

Spencer Gardner 2 년 전
부모
커밋
0021ffd5e0
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/app.ts

+ 5 - 1
src/app.ts

@@ -3,7 +3,11 @@ import express from "express";
 const app = express();
 
 app.get("/", (req, res) => {
-  res.send(`time:${Math.round(new Date().getTime() / 1000)}`);
+  const lines = [
+    `time:${Math.round(new Date().getTime() / 1000)}`,
+     `tz:-6`
+  ]
+  res.send(lines.join('\n'));
 });
 
 app.listen(3000, "0.0.0.0", () => {});