From bb610c17b5a3dad539bb29082c65ea00d67aa330 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 3 Oct 2024 15:28:47 -0600 Subject: [PATCH] Adding all changes --- code/stations/02_article_parser.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/stations/02_article_parser.go b/code/stations/02_article_parser.go index d2c5536..ea54d39 100644 --- a/code/stations/02_article_parser.go +++ b/code/stations/02_article_parser.go @@ -2,6 +2,7 @@ package stations import ( "encoding/json" + "errors" "fmt" "strings" @@ -39,4 +40,4 @@ func (this *ArticleParser) Do(input any, output func(any)) { // input: contracts.Article } -//var errMalformedContent = errors.New("malformed content") +var errMalformedContent = errors.New("malformed content")