Connected two file puml

0 votes
asked Mar 11 in Question / help by xxiaprile753 (120 points)

I have 2 file

a.puml  
@startuml GAS1
    [GASS01] <<10.100.10.31>>
@enduml


b.puml
@startuml GAS2
    [GASS02] <<10.100.10.32>>
@enduml


 how can  i  create a connect like GASS01-->GASS02

Thanks

1 Answer

0 votes
answered Mar 12 by The-Lu (64,760 points)

Hello X.,

For that you can create a `c.puml` as:

@startuml
!include a.puml
!include b.puml

GASS01-->GASS02
@enduml

See also doc. here:

Enjoy,
Regards,
Th.

commented Mar 12 by xxiaprile753 (120 points)
Thanks you, i will see
...