Compare commits

..

No commits in common. "forge/iss-d65d495e8095-attempt-2" and "main" have entirely different histories.

2 changed files with 0 additions and 22 deletions

View file

@ -1,3 +0,0 @@
# iss-d65d495e8095-attempt-2
Forge 이슈 작업 브랜치 `forge/iss-d65d495e8095-attempt-2`.

View file

@ -1,19 +0,0 @@
%%%{init: {'themeVariables': {'sequenceDiagramTheme': 'default'}}}%%%
sequenceDiagram
participant User
participant PaymentGateway
participant Database
User->>PaymentGateway: Initiate Payment
alt Successful Payment
PaymentGateway->>Database: Commit Transaction
Database-->>PaymentGateway: Confirm Commit
PaymentGateway-->>User: Payment Success
else External Failure
PaymentGateway-->>User: Payment Failure
else DB Failure
PaymentGateway->>Database: Rollback Transaction
Database-->>PaymentGateway: Confirm Rollback
PaymentGateway-->>User: Payment Rollback
end