From 1561335e1b803f6dbd09e2baaddd323cff3e0af2 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Fri, 3 Sep 2021 23:34:26 +0200 Subject: [PATCH] introduce a inbound class to prepare the collection of internal data --- aman/types/Inbound.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 aman/types/Inbound.py diff --git a/aman/types/Inbound.py b/aman/types/Inbound.py new file mode 100644 index 0000000..a670f49 --- /dev/null +++ b/aman/types/Inbound.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +from aman.com import AircraftReport_pb2 + +class Inbound: + def __init__(self, report : AircraftReport_pb2.AircraftReport): + self.report = report