summaryrefslogtreecommitdiff
path: root/utiltypes.py
diff options
context:
space:
mode:
authorGeorge Abbott <george@gabbott.dev>2023-11-03 21:26:37 +0000
committerGeorge Abbott <george@gabbott.dev>2023-11-03 21:26:37 +0000
commitf76a2b4e8dffe2044cd7532ca40554267f0d5454 (patch)
treeb25fca668b027869c2f7030025217fadcc7b1df6 /utiltypes.py
Commit allHEADmaster
Diffstat (limited to 'utiltypes.py')
-rw-r--r--utiltypes.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/utiltypes.py b/utiltypes.py
new file mode 100644
index 0000000..69ed918
--- /dev/null
+++ b/utiltypes.py
@@ -0,0 +1,8 @@
+from enum import Enum
+from typing import *
+from dataclasses import dataclass
+
+class Filetype(Enum):
+ Excel = 0
+ Csv = 1
+