Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fixed ident on code
  • Loading branch information
christopherread committed Jun 18, 2019
1 parent d8849d6 commit caa1e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ Define custom endpoints that can wrap API calls or integrations with other syste
...

IServiceBus serviceBus = ServiceBus.Configure()
.WithActiveMQEndpoints<IMyServiceMessage>()
.WithActiveMQEndpoints<IMyServiceMessage>()
.Named("MyService")
.UsingQueueFor<ICommand>()
.ConnectToBroker("tcp://localhost:61616")
.SerializedAsJson()
.AsClientAndServer()
.WithEndpoints(new MyCustomEndpoint())
.WithEndpoints(new MyCustomEndpoint())
.Create();

0 comments on commit caa1e08

Please sign in to comment.