Begin verify class

This commit is contained in:
Mark Veidemanis 2022-04-20 13:01:38 +01:00
parent a1a349a9de
commit a4c79973d8
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
2 changed files with 14 additions and 0 deletions

View File

@ -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):
"""

12
handler/ux/verify.py Normal file
View File

@ -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.
"""