Best way to develop modular loosely-coupled solutions?
Hi Guys,
We find ourselves repeating a lot of functions/automations across different solutions. I was thinking of decoupling these functions in a way that I'd be able to call standalone runtime projects with specific functionalities.
For example, we almost always have recycle an automation that involves getting a token for an internal REST API. Surely there must be a better way than writing this automation over and over again for each solution that demands it. This of course requires the decoupled components to be able to be run with different inputs and pass over any output to the next part of the series.
What is the best way to go about this? Thank you!