Begin verify class
This commit is contained in:
parent
a1a349a9de
commit
a4c79973d8
|
@ -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):
|
||||
"""
|
||||
|
|
|
@ -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.
|
||||
"""
|
Loading…
Reference in New Issue