Skip to content

Commit a6fc962

Browse files
committed
Fix headers
1 parent 1252ca6 commit a6fc962

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# SimpleServiceBus
22

3-
##Install:
3+
## Install:
44
Install using nuget DS.SimpleServiceBus
55

6-
##Usage:
6+
## Usage:
77
Install RabbitMQ and use the management gui to create a new virtual host
88

99
Create an instance of BusService:
@@ -21,7 +21,7 @@ Start the Bus
2121
await busService.StartAsync(CancellationToken.None);
2222
```
2323

24-
##Events
24+
## Events
2525
Create a model class implementing the IModel interface
2626
Create an event class implementing the IEvent<TModel> using your newly created model class (set EventId to a new guid)
2727
Create an eventhandler implementing the IEventHandler<TEvent> using your newly created event class
@@ -41,7 +41,7 @@ Publish an event
4141
await eventService.PublishAsync(InstanceOfYourEventClass, CancellationToken.None);
4242
```
4343

44-
##Commands
44+
## Commands
4545
Create a class implementing the IRequestModel interface
4646
Create a class implementing the IResponseModel interface
4747
Create a commandhandler implementing the ICommandHandler<TRequestModel, TResponseModel> using your newly created classes

0 commit comments

Comments
 (0)