auto_build_launcher/scripts/task.py

11 lines
154 B
Python
Raw Normal View History

2025-07-07 03:27:26 +00:00
from .context import Context
class Task:
def __init__(self, context: Context):
self.context = context
def execute(self):
pass