mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 11:09:58 +00:00
8 lines
128 B
Python
8 lines
128 B
Python
|
|
class MatcherBase(object):
|
|
|
|
def __init__(self, criteria):
|
|
self._criteria = criteria
|
|
|
|
def match(self, xml):
|
|
return False
|