From a4c79973d86bdda1d22866ec906562a516ce6d07 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Wed, 20 Apr 2022 13:01:38 +0100 Subject: [PATCH] Begin verify class --- handler/ux/__init__.py | 2 ++ handler/ux/verify.py | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 handler/ux/verify.py diff --git a/handler/ux/__init__.py b/handler/ux/__init__.py index 51757e1..1f89a52 100644 --- a/handler/ux/__init__.py +++ b/handler/ux/__init__.py @@ -9,6 +9,7 @@ import util import ux.irc import ux.commands import ux.notify +import ux.verify class UX(object): @@ -21,6 +22,7 @@ class UX(object): self.irc = ux.irc.bot() self.notify = ux.notify.Notify() + self.verify = ux.verify.Verify() def __xmerged__(self): """ diff --git a/handler/ux/verify.py b/handler/ux/verify.py new file mode 100644 index 0000000..81dcc41 --- /dev/null +++ b/handler/ux/verify.py @@ -0,0 +1,12 @@ +# Other library imports +# import requests + +# Project imports +# from settings import settings +import util + + +class Verify(util.Base): + """ + Class to handle user verification. + """