"""Mispa (Agappe) — ASTM over RS-232 serial. Thin device-specific driver over
the shared ASTM base (mapping handled by the cloud catalog)."""

from __future__ import annotations

from .astm_base import AstmDriver


class MispaDriver(AstmDriver):
    name = "mispa_astm"
    protocol = "astm"


driver = MispaDriver()
