auto_build_launcher/scripts/task.py

11 lines
154 B
Python

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