Hi everyone!
Is it possible to import a custom Flowscript module in another custom Flowscript module, like a ´using´ in .NET?
I’ve noticed it’s possible within a ‘script step’ and in ‘Playground’ using ´open´.
Or maybe it’s only possible to use built-in modules with custom script modules? 
In the Hub when viewing a script module it looks like it might be possible under ‘Dependencies’ → ‘Consists of’? 
Take care, thank you!
Hello!
Good question – this is an obviosly useful feature (which also adds new compliexities). It is not yet supported. It is in our roadmap, but not yet planned for any specific release.
Internally, we tend to either duplicate code across several modules, “inject” functionality using such things as higher-order functions or generic types, or simply carefully consider how we slice our functionality to avoid the need for dependency chains.