This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-pratic/src/authentic2_pratic/backends.py

9 lines
187 B
Python

import logging
class PraticBackend(object):
def __init__(self):
self.logger = logging.getLogger(__name__)
def authenticate(self, **kwargs):
raise NotImplemented