mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
14 lines
316 B
Python
14 lines
316 B
Python
|
"""Factory provider example."""
|
||
|
|
||
|
from dependency_injector import providers
|
||
|
|
||
|
|
||
|
object_factory = providers.Factory(object)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
object1 = object_factory()
|
||
|
object2 = object_factory()
|
||
|
|
||
|
assert object1 is not object2
|
||
|
assert isinstance(object1, object) and isinstance(object2, object)
|