mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
13 lines
363 B
Python
13 lines
363 B
Python
__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
|
|
|