Skip to content

Commit

Permalink
Merge pull request #387 from onc-healthit/LANTERN-585-Alert-for-new-p…
Browse files Browse the repository at this point in the history
…arser

LANTERN-585-alert for new parser
  • Loading branch information
vishnu-mettles authored Sep 10, 2024
2 parents e91a282 + ab64656 commit 91f708a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import (
"encoding/json"
"os"
"strings"

log "github.com/sirupsen/logrus"
)

type EndpointList struct {
Expand Down Expand Up @@ -525,6 +527,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) {
PointclickWebscraper(pointclickURL, fileToWriteTo)
} else if URLsEqual(chplURL, nextgenPracticeURL) {
NextgenPracticeWebscraper(nextgenPracticeURL, fileToWriteTo)
} else {
log.Warnf("Handler is required for url %s", chplURL)
}
}

Expand Down

0 comments on commit 91f708a

Please sign in to comment.