Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Feb 6, 2025
1 parent deba004 commit 7840d2a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions wasm-components/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@ They are currently written in Rust, but could be written in any language that co

## Components

### [Data init](rust/data-init)
### [Data init](data-init)
- sets up the various data stores

### [HTTP controller](rust/http-controller)
### [HTTP controller](http-controller)
- routes HTTP requests to the appropriate service

### [Products Service](rust/products-service)
### [Products Service](products-service)
- manages the products in **key-value store**

### [Inventory Service](rust/inventory-service)
### [Inventory Service](inventory-service)
- manages the inventory of products in **postgres**

### [Orders Service](rust/orders-service)
### [Orders Service](orders-service)
- manages the orders in **postgres**
- calls `inventory-service`
- does not call `products-service`, although it probs should
- publishes `OrderNotification` events to **NATS**

### [Notification Service](rust/notification-service)
### [Notification Service](notification-service)
- subscribes to `OrderNotification` events from **NATS**
- prints received messages to `stdout`

0 comments on commit 7840d2a

Please sign in to comment.