From eb1b2ce255371d7529e1b4341600ecca5052e1f4 Mon Sep 17 00:00:00 2001 From: Cameron Clough Date: Thu, 24 Aug 2023 12:29:59 +0100 Subject: [PATCH] services: add missing import (#521) --- services.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services.py b/services.py index da99a4094..4e18d5971 100755 --- a/services.py +++ b/services.py @@ -107,6 +107,7 @@ def build_header(): h += "#define __SERVICES_H\n" h += "#include \n" + h += "#include \n" h += "struct service { std::string name; int port; bool should_log; int frequency; int decimation; };\n" h += "static std::map services = {\n"