Skip to content

Commit

Permalink
feat: migrate /generate API to CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
Amzani committed Mar 11, 2024
1 parent 08e51d7 commit 605cf7b
Show file tree
Hide file tree
Showing 56 changed files with 64,786 additions and 10,170 deletions.
1 change: 1 addition & 0 deletions .asyncapi-analytics
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"analyticsEnabled":"true","infoMessageShown":"true"}
31 changes: 31 additions & 0 deletions asyncapi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
asyncapi: 3.0.0
info:
title: Account Service
version: 1.0.0
description: This service is in charge of processing user signups
channels:
userSignedup:
address: user/signedup
messages:
UserSignedUp:
$ref: '#/components/messages/UserSignedUp'
operations:
sendUserSignedup:
action: send
channel:
$ref: '#/channels/userSignedup'
messages:
- $ref: '#/channels/userSignedup/messages/UserSignedUp'
components:
messages:
UserSignedUp:
payload:
type: object
properties:
displayName:
type: string
description: Name of the user
email:
type: string
format: email
description: Email of the user
Loading

0 comments on commit 605cf7b

Please sign in to comment.