"""Maglumi (Snibe) — ASTM E1394 over RS-232 serial. Standard ASTM; the
test-code → investigation mapping lives in the cloud catalog, so this is a thin
device-specific driver over the shared ASTM base."""

from __future__ import annotations

from .astm_base import AstmDriver


class MaglumiDriver(AstmDriver):
    name = "maglumi_astm"
    protocol = "astm"


driver = MaglumiDriver()
