]> jfr.im git - irc/quakenet/qwebirc.git/blame - dummyauthgate/__init__.py
normalise line endings
[irc/quakenet/qwebirc.git] / dummyauthgate / __init__.py
CommitLineData
a40ca523
CP
1class 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
1435dd92 15twisted = DummyImplementation