Django Integration¶
Install¶
Settings¶
# settings.py
from symphra_container import Container, Lifetime
CONTAINER = Container()
class Repo:
def get(self, uid: int) -> dict: return {"id": uid}
CONTAINER.register(Repo, lifetime=Lifetime.SINGLETON)