mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
14 lines
363 B
Python
14 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
|
||
|
|