auto_build_launcher/scripts/task.py

12 lines
167 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
pass
def execute(self):
pass