Share code in F# Azure Functions project

Viewed 87

I'm currently developing F# Azure functions uinsg VS Code and I've laid out my project as such:

ProjectFolder
    -> Function1
        -> function.json
        -> run.fsx
    -> Function2
        -> function.json
        -> run.fsx

Given that F# doesn't support folders what's the best way to share code (especially types) between the two functions?

1 Answers
Related