From 8ac648867558a2f6061e43f05169a9c1791595ff Mon Sep 17 00:00:00 2001 From: rui hildt Date: Tue, 29 Sep 2020 00:39:17 +0200 Subject: [PATCH] Update documentation url --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index cf64559..c607c66 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,7 @@ const server = require("./api/server"); server.get("/", (req, res) => { res.json({ message: `API server for Dijkstra. :)`, - documentation: `Check out: https://github.com/ruihildt/dijkstra` + documentation: `Check out: https://git.ruihildt.xyz/ruihildt/dijkstra-backend` }); });