In the REST(ish) server the responses include the source of the data, that is, the descriptive text that exists with the data source.
Initially, this was done to ensure safety when live testing, however, the handlers should not know anything about the source of the data as it may come from MySQL, MongoDB or some other cache in the future.
I can't think of a sensible way to provide this information back to the requester, and this ties the handlers to the datastore value as we need to express the datastore.Desc.
this is messy, and should probably juts be removed.
In the REST(ish) server the responses include the source of the data, that is, the descriptive text that exists with the data source.
Initially, this was done to ensure safety when live testing, however, the handlers should not know anything about the source of the data as it may come from MySQL, MongoDB or some other cache in the future.
I can't think of a sensible way to provide this information back to the requester, and this ties the handlers to the datastore value as we need to express the
datastore.Desc
.this is messy, and should probably juts be removed.