anydi 0.30.0__py3-none-any.whl → 0.32.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
anydi/__init__.py CHANGED
@@ -4,14 +4,9 @@ from typing import Any, cast
4
4
 
5
5
  from ._container import Container, request, singleton, transient
6
6
  from ._module import Module, provider
7
+ from ._provider import Provider
7
8
  from ._scanner import injectable
8
- from ._types import Marker, Provider, Scope
9
-
10
-
11
- def dep() -> Any:
12
- """A marker for dependency injection."""
13
- return Marker()
14
-
9
+ from ._types import Marker, Scope
15
10
 
16
11
  # Alias for dependency auto marker
17
12
  auto = cast(Any, Marker())
@@ -23,7 +18,6 @@ __all__ = [
23
18
  "Provider",
24
19
  "Scope",
25
20
  "auto",
26
- "dep",
27
21
  "injectable",
28
22
  "provider",
29
23
  "request",