From f013dfa86cc1d91f967482bc6f88337922b2d0e0 Mon Sep 17 00:00:00 2001 From: Jalitha Date: Sun, 9 Sep 2018 00:18:24 +1000 Subject: [PATCH 1/2] Ensure product is viable in a long-tail investment --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index 716b9c0..46b7e0f 100644 --- a/src/app.ts +++ b/src/app.ts @@ -2,4 +2,4 @@ import * as express from "express"; export const app = express(); -app.get("/", (req, res) => res.send("Govhack 2018")); +app.get("/", (req, res) => res.send("Govhack 2019")); From 0619ad082dfe57a8002994e30200f3f870d4ee47 Mon Sep 17 00:00:00 2001 From: Jalitha Date: Sun, 9 Sep 2018 00:26:04 +1000 Subject: [PATCH 2/2] Migrate to latest technologies --- src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.ts b/src/app.ts index b193718..1e18ba8 100644 --- a/src/app.ts +++ b/src/app.ts @@ -4,6 +4,6 @@ export const app = new koa(); app.use(async ctx => { ctx.body = { status: "success", - message: "govhack 2018" + message: "Govhack 2019" }; });