mirror of
https://github.com/gryf/coach.git
synced 2025-12-17 19:20:19 +01:00
19 lines
278 B
Python
19 lines
278 B
Python
|
|
|
|
|
|
class DeployParameters(object):
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
|
|
class Deploy(object):
|
|
|
|
def __init__(self, deploy_parameters):
|
|
self.deploy_parameters = deploy_parameters
|
|
|
|
def setup(self) -> bool:
|
|
pass
|
|
|
|
def deploy(self) -> bool:
|
|
pass |