Connected two file puml

0 votes
asked Mar 11, 2024 in Question / help by xxiaprile753 (180 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, 2024 by The-Lu (76,680 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, 2024 by xxiaprile753 (180 points)
Thanks you, i will see
...