codecombat/scripts/devSetup/dependency.py

14 lines
363 B
Python
Raw Normal View History

2014-01-03 13:32:13 -05:00
__author__ = u'schmatz'
from configuration import Configuration
class Dependency(object):
def __init__(self,configuration):
assert isinstance(configuration,Configuration)
self.config = configuration
def download_dependencies(self):
raise NotImplementedError
def install_dependencies(self):
raise NotImplementedError