auth_backends.py 150 B

123456789
  1. from django.contrib.auth.backends import ModelBackend
  2. class TestClientBackend(ModelBackend):
  3. pass
  4. class BackendWithoutGetUserMethod:
  5. pass