Created
February 11, 2026 16:54
-
-
Save boyney123/f5aa33c20a656f6c1d9dbba7f30f5569 to your computer and use it in GitHub Desktop.
Testing EventCatalog Stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| domain Payment { | |
| version 1.0.0 | |
| summary "Payment processing domain" | |
| service PaymentService { | |
| version 1.0.0 | |
| summary "Handles payment transactions" | |
| sends event PaymentProcessed { | |
| version 1.0.0 | |
| summary "Payment completed successfully" | |
| } | |
| sends event PaymentFailed { | |
| version 1.0.0 | |
| summary "Payment processing failed" | |
| } | |
| receives command ProcessPayment { | |
| version 1.0.0 | |
| summary "Initiate payment processing" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment