Description:
The code between Blob Forwarder function and Event Hub message forwarder function is almost completely duplicated. This work tries to move the functionality common for both of these two functions.
To clarify, the code will be common hereafter, however, like previously, there will be two azure functions - Blob Forwarder and Event Hub Message Forwarder.
Technical Description:
index.js is same for both of the two functions. Hence, a new folder -> LogForwarder is introduced and index.js is moved into it.
The two folders -> BlobForwarder and EventHubForwarder are moved into LogForwarder folder. The index.js file in them were removed.
package.json is updated with right paths to package appropriately.
Description: The code between Blob Forwarder function and Event Hub message forwarder function is almost completely duplicated. This work tries to move the functionality common for both of these two functions. To clarify, the code will be common hereafter, however, like previously, there will be two azure functions - Blob Forwarder and Event Hub Message Forwarder.
Technical Description: