Closed johnnycopes closed 10 months ago
CountryService
shared/data-access
PlaceService
learn/data-access
The new data services structure went from this:
ApiService (internal) -> PlaceService (shared)
ApiService
to this:
ApiService (internal) -> CountryService (shared) -> PlaceService (learn)
thereby reducing strain on the PlaceService and freeing the explore/ libs from knowing anything about "places" when all it needs to know is "countries"
explore/
CountryService
and puts it in theshared/data-access
libPlaceService
and its dependencies to thelearn/data-access
libThe new data services structure went from this:
ApiService
(internal) ->PlaceService
(shared)to this:
ApiService
(internal) ->CountryService
(shared) ->PlaceService
(learn)thereby reducing strain on the
PlaceService
and freeing theexplore/
libs from knowing anything about "places" when all it needs to know is "countries"