mirror of
https://github.com/exo-explore/exo.git
synced 2026-06-26 22:55:51 -04:00
10 lines
259 B
Python
10 lines
259 B
Python
from pathlib import Path
|
|
|
|
from shared.env import BaseEnv
|
|
|
|
|
|
class MasterEnvironmentSchema(BaseEnv):
|
|
# Master-specific: forwarder configuration
|
|
# Default to build/forwarder if not explicitly set
|
|
FORWARDER_BINARY_PATH: Path = Path("build/forwarder")
|