feat: set basic structure deploy commands

This commit is contained in:
Eduardo Chiarotti
2024-08-19 17:22:05 -03:00
parent ddda8f6bda
commit ff5c55fd54
3 changed files with 76 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
class DeployCommand:
def __init__(self, project_name):
self.project_name = project_name
def deploy(self):
print("Deploying the crew...")
def create_crew(self):
print("Creating deployment...")
def list_crews(self):
print("Listing all deployments...")
def get_crew_status(self):
print("Getting deployment status...")
def get_crew_logs(self):
print("Getting deployment logs...")
def remove_crew(self):
print("Removing deployment...")
def signup(self):
print("Signing up for deployment...")