auto_build_launcher/scripts/task.py

12 lines
167 B
Python

from .context import Context
class Task:
def __init__(self, context: Context):
self.context = context
pass
def execute(self):
pass