From 097aaa49fa99cffec9db74432d7025457c34199e Mon Sep 17 00:00:00 2001 From: Simeon Simeonov Date: Fri, 3 Apr 2020 00:00:52 +0200 Subject: Implement OTPStore container class in the server module --- otp2289/__init__.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'otp2289/__init__.py') diff --git a/otp2289/__init__.py b/otp2289/__init__.py index 2fba4ea..36d1659 100644 --- a/otp2289/__init__.py +++ b/otp2289/__init__.py @@ -29,12 +29,16 @@ from .generator import (OTP_ALGO_MD5, OTPChallengeException, OTPGenerator, OTPGeneratorException) -from .server import OTPInvalidResponse, OTPState, OTPStateException +from .server import (OTPInvalidResponse, + OTPState, + OTPStateException, + OTPStore, + OTPStoreException) __author__ = 'Simeon Simeonov' __version__ = '1.0.0' -__license__ = 'BSD-2' +__license__ = 'BSD 2-Clause' def int_or_str(value): @@ -54,4 +58,6 @@ __all__ = ['OTP_ALGO_MD5', 'OTPGeneratorException', 'OTPInvalidResponse', 'OTPState', - 'OTPStateException'] + 'OTPStateException', + 'OTPStore', + 'OTPStoreException'] -- cgit v1.3