Skip to content

Commit

Permalink
chore: update markdown highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
cafadev committed Oct 11, 2023
1 parent ad54479 commit 2409c67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TurboBus is an opinionated implementation of Command Responsibility Segregation
Let's see an example using python typings. You can omit all the typing stuffs if you want to.

**God Mode ⚡**
```python
```python3
from dataclasses import dataclass
from typing import TypeAlias

Expand Down Expand Up @@ -40,7 +40,7 @@ if __name__ == '__main__':
```

**Human Mode 🥱**
```python
```python3
from dataclasses import dataclass

from turbobus.bus import Command, CommandHandler
Expand Down Expand Up @@ -74,7 +74,7 @@ In many cases we're going to need to inject dependencies to our command handler.

With the injectable decorator we can specify a class that is implementing the functionalities of the dependency. For example:

```python
```python3
from turbobus.decorators import injectable
from log.axioma.log import ILogger

Expand Down

0 comments on commit 2409c67

Please sign in to comment.