aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app.js b/app.js
index 9870050..66b7cd8 100644
--- a/app.js
+++ b/app.js
@@ -1,12 +1,14 @@
const express = require("express");
const api = require("./api/v1");
-const differenceInDays = require('date-fns/differenceInDays')
+/*
const now = new Date();
const commit = new Date(1611497751 * 1000);
console.log(now);
console.log(commit)
console.log(differenceInDays(now, commit));
+*/
+
const app = express();
app.use("/api/v1", api);
app.listen(1337); \ No newline at end of file