From 6f532b052e3c2c53c1c06afa94af0f3ded096fc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Wed, 22 Dec 2021 01:29:56 +0100 Subject: [PATCH] Set proper JSON technology JSON output --- apps/types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/types.go b/apps/types.go index b3f2b02..4a09f1c 100644 --- a/apps/types.go +++ b/apps/types.go @@ -129,6 +129,6 @@ type AppTechs []AppTech // AppTech holds info about one technology in the app type AppTech struct { - Name string - Version string + Name string `json:"name"` + Version string `json:"version"` }