mirror of
https://github.com/All-Hands-AI/OpenHands.git
synced 2026-04-29 03:00:45 -04:00
* fix up folder structure * update docs * fix imports * fix imports * fix imoprt * fix imports * fix imports * fix imports * fix test import * fix tests * fix main import
14 lines
311 B
Python
14 lines
311 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class PluginRequirement:
|
|
"""Requirement for a plugin."""
|
|
|
|
name: str
|
|
# FOLDER/FILES to be copied to the sandbox
|
|
host_src: str
|
|
sandbox_dest: str
|
|
# NOTE: bash_script_path should be relative to the `sandbox_dest` path
|
|
bash_script_path: str
|