From 3ef937d85ef705f8594b1fb2af3f84716260d911 Mon Sep 17 00:00:00 2001 From: Robin Verton Date: Tue, 8 Sep 2020 15:10:58 +0200 Subject: [PATCH] Change upstream apps.json to technologies.json file, fixes #36 --- wappalyze.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wappalyze.go b/wappalyze.go index 172c859..f8f8e90 100644 --- a/wappalyze.go +++ b/wappalyze.go @@ -11,7 +11,7 @@ import ( ) // WappalyzerURL is the link to the latest apps.json file in the Wappalyzer repo -const WappalyzerURL = "https://raw.githubusercontent.com/AliasIO/Wappalyzer/master/src/apps.json" +const WappalyzerURL = "https://raw.githubusercontent.com/AliasIO/Wappalyzer/master/src/technologies.json" // StringArray type is a wrapper for []string for use in unmarshalling the apps.json type StringArray []string @@ -44,7 +44,7 @@ type Category struct { // AppsDefinition type encapsulates the json encoding of the whole apps.json file type AppsDefinition struct { - Apps map[string]App `json:"apps"` + Apps map[string]App `json:"technologies"` Cats map[string]Category `json:"categories"` }