Skip to content

Commit

Permalink
LANTERN-761: Adding Bundle querier for Harrisambulatory URL
Browse files Browse the repository at this point in the history
  • Loading branch information
archita-ekkirala committed Oct 18, 2024
1 parent 220ba76 commit 6389f84
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ var zoommdURL = "https://www.zoommd.com/zoommd-file-api-endpoints"
var footholdURL = "https://fhir.footholdtechnology.com/demodb/endpoints"
var pointclickURL = "https://fhir.pointclickcare.com/"
var nextgenPracticeURL = "https://www.nextgen.com/api/practice-search"
var harrisambulatoryURL = "https://ac-fhir.harrisambulatory.com/endpoints/r4"

func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) {

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

0 comments on commit 6389f84

Please sign in to comment.