summary refs log tree commit diff stats
path: root/common/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/types.py')
-rw-r--r--common/types.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/common/types.py b/common/types.py
new file mode 100644
index 0000000..e9716b1
--- /dev/null
+++ b/common/types.py
@@ -0,0 +1,16 @@
+from typing import Literal
+
+question_category = Literal[
+    "Literature",
+    "History",
+    "Science",
+    "Fine Arts",
+    "Religion",
+    "Mythology",
+    "Philosophy",
+    "Social Science",
+    "Current Events",
+    "Geography",
+    "Other Academic",
+    "Trash",
+]