]> jfr.im git - irc/quakenet/qwebirc.git/blob - dummyauthgate/__init__.py
77e96b5809bd5465b3da8dafa5c9d2e9fe40dcad
[irc/quakenet/qwebirc.git] / dummyauthgate / __init__.py
1 class DummyImplementation(object):
2 def __init__(self, *args, **kwargs):
3 pass
4
5 def __getattr__(self, *args, **kwargs):
6 raise Exception, "Not implemented."
7
8 def login_optional(self, *args, **kwargs):
9 return None
10
11 @classmethod
12 def get_session_data(self, *args, **kwargs):
13 return {}
14
15 twisted = DummyImplementation