From 3a312fa6d5d4cf858292448f5402bdf578591929 Mon Sep 17 00:00:00 2001 From: Michele Cascella Date: Fri, 21 Mar 2025 10:34:48 +0100 Subject: [PATCH] add DataTypes(Enum) --- dranspose/data/proto.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dranspose/data/proto.py diff --git a/dranspose/data/proto.py b/dranspose/data/proto.py new file mode 100644 index 0000000..7221347 --- /dev/null +++ b/dranspose/data/proto.py @@ -0,0 +1,12 @@ +from enum import Enum + + +class DataTypes(Enum): + CONTRAST = "contrast" + EIGER_LEGACY = "EIGER_LEGACY" + LECROY = "lecroy" + PCAP = "PCAP" + PCAP_RAW = "PCAP_RAW" + SARDANA = "sardana" + STINS = "STINS" + XSPRESS = "xspress"