forked from p34709852/monkey
13 lines
251 B
Python
13 lines
251 B
Python
|
|
||
|
from abc import ABCMeta, abstractmethod
|
||
|
|
||
|
__author__ = 'itamar'
|
||
|
|
||
|
class MonitorCondition(object):
|
||
|
__metaclass__ = ABCMeta
|
||
|
|
||
|
@abstractmethod
|
||
|
def check_condition(self):
|
||
|
raise NotImplementedError()
|
||
|
|
||
|
from files import FilesExistCondition
|