| Total Complexity | 0 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | import jacked._inject |
||
|
|
|||
| 2 | import jacked._injectable |
||
| 3 | import jacked._container |
||
| 4 | import jacked._typing |
||
| 5 | import jacked._discover |
||
| 6 | import jacked._exceptions |
||
| 7 | |||
| 8 | |||
| 9 | # Types: |
||
| 10 | Injectable = jacked._injectable.Injectable |
||
| 11 | Container = jacked._container.Container |
||
| 12 | T = jacked._typing.T |
||
| 13 | Module = jacked._typing.Module |
||
| 14 | NoneType = jacked._typing.NoneType |
||
| 15 | AttrDict = jacked._typing.AttrDict |
||
| 16 | |||
| 17 | # Functions: |
||
| 18 | inject = jacked._inject.inject |
||
| 19 | injectable = jacked._injectable.injectable |
||
| 20 | discover = jacked._discover.discover |
||
| 21 | |||
| 22 | # Exceptions: |
||
| 23 | JackedError = jacked._exceptions.JackedError |
||
| 24 | InvalidUsageError = jacked._exceptions.InvalidUsageError |
||
| 25 | InjectionError = jacked._exceptions.InjectionError |
||
| 26 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.