From cdd9ce17e91d1146afc927e0ef6c2fda0588ae01 Mon Sep 17 00:00:00 2001 From: s444510 Date: Thu, 4 May 2023 19:11:19 +0200 Subject: [PATCH] add user and system act types --- system-act-type.py => SystemActType.py | 0 UserActType.py | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+) rename system-act-type.py => SystemActType.py (100%) create mode 100644 UserActType.py diff --git a/system-act-type.py b/SystemActType.py similarity index 100% rename from system-act-type.py rename to SystemActType.py diff --git a/UserActType.py b/UserActType.py new file mode 100644 index 0000000..4f2b482 --- /dev/null +++ b/UserActType.py @@ -0,0 +1,22 @@ +from enum import Enum, unique + + +@unique +class UserActType(Enum): + ack = 0, + affirm = 1, + bye = 2, + hello = 3, + help = 4, + negate = 5, + null = 6, + repeat = 7, + requalts = 8, + reqmore = 9, + restart = 10, + silence = 11, + thankyou = 12, + confirm = 13, + deny = 14, + inform = 15, + request = 16