summaryrefslogtreecommitdiff
path: root/client/modules/module.py
diff options
context:
space:
mode:
Diffstat (limited to 'client/modules/module.py')
-rw-r--r--client/modules/module.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/client/modules/module.py b/client/modules/module.py
new file mode 100644
index 0000000..14c6fea
--- /dev/null
+++ b/client/modules/module.py
@@ -0,0 +1,20 @@
+'''
+ A class used by all modules, for the simple
+ reason that every module requires a token.
+ it's easily extensible for future reference.
+
+ Verified: 2021 February 6
+ * Follows PEP8
+ * Tested Platforms
+ * Windows 10
+'''
+
+
+class Module:
+
+ def __init__(self, token):
+ self.__token = token
+
+ @property
+ def token(self):
+ return self.__token