From 5fc9f3ef81125e612aeaa46108eb927b63ab5cec Mon Sep 17 00:00:00 2001 From: Austin Davis Date: Sat, 3 Feb 2024 07:53:55 -0700 Subject: [PATCH] adding typescript --- scraper/interest/interest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scraper/interest/interest.go b/scraper/interest/interest.go index 8ed16ac..3c73e3c 100644 --- a/scraper/interest/interest.go +++ b/scraper/interest/interest.go @@ -8,7 +8,7 @@ import ( ) func checkIfInterested(description string) bool { - keywords := []string{"node", "nodejs", "node.js", "go ", "golang", "go,", "go)", "(go"} + keywords := []string{"typescript", "node", "nodejs", "node.js", "go ", "golang", "go,", "go)", "(go"} // Check if keywords are present in the job's text descriptionToLower := strings.ToLower(description) for _, keyword := range keywords {