|
"""Starter Adapter: Perception module interface (MVP)."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Dict, Any
|
|
|
|
|
|
def process_sensor_data(data: Dict[str, Any]) -> Dict[str, Any]:
|
|
"""Minimal perception adapter that passes data through."""
|
|
return dict(data)
|