Baudin999 / ZDragon_Old_002

ZDragon is moving to .NET!
MIT License
1 stars 3 forks source link

Flow Composition #23

Closed Baudin999 closed 4 years ago

Baudin999 commented 4 years ago

Flows can now be composed:

flow GetStudents =

    compose
        API -> Service :: FilterParams -> List Student;
        Service -> Database :: FilterParams -> List Student;
    ;

    API -> Database :: String -> List Number;

This will result in:

image