%%{init: {"themeVariables": {"fontSize": "50px"}, "flowchart": {"wrappingWidth": 1000}}}%%
 flowchart TD
     subgraph STEP1[" "]
         direction TB
         T1(["⚡ Step 1. 서버 네트워크 라이브러리 검증"]):::t1
         subgraph S1[" "]
             direction LR
             A["게임코디 제공 Echo 더미"] <-->|"에코"| B["서버 네트워크 라이브러리"]
             B --> C{"부하테스트 통과?"}
         end
         T1 ~~~ S1
     end

     subgraph STEP2[" "]
         direction TB
         T2(["⚡ Step 2. 커스텀 에코 더미 검증"]):::t2
         subgraph S2[" "]
             direction LR
             D["검증된 네트워크 라이브러리"] <-->|"에코"| E["커스텀 에코 더미"]
             D --> F{"정상 동작?"}
         end
         T2 ~~~ S2
     end

     subgraph STEP3[" "]
         direction TB
         T3(["⚡ Step 3. 컨텐츠 검증"]):::t3
         subgraph S3[" "]
             direction LR
             G["서버 (네트워크 + 컨텐츠)"] <-->|"시나리오 부하"| H["MMO 부하 더미"]
             G --> I["최종 검증 완료"]
         end
         T3 ~~~ S3
     end

     STEP1 -->|"통과"| STEP2
     STEP2 -->|"통과"| STEP3

     classDef t1 fill:#1565c0,color:#fff,stroke:#0d47a1,stroke-width:2px
     classDef t2 fill:#e65100,color:#fff,stroke:#bf360c,stroke-width:2px
     classDef t3 fill:#2e7d32,color:#fff,stroke:#1b5e20,stroke-width:2px
     style STEP1 fill:#e3f2fd,stroke:#1565c0,stroke-width:2px
     style STEP2 fill:#fff3e0,stroke:#e65100,stroke-width:2px
     style STEP3 fill:#e8f5e9,stroke:#2e7d32,stroke-width:2px
     style S1 fill:none,stroke:none
     style S2 fill:none,stroke:none
     style S3 fill:none,stroke:none
     style I fill:#a5d6a7,stroke:#1b5e20,stroke-width:3px

MMOServer/StressTest at main · cocoz93/MMOServer

<aside>

서버 검증 및 클라 구현 

</aside>