diff options
| author | AL-LCL <alvin@alvinhavel.com> | 2023-05-19 10:39:49 +0200 | 
|---|---|---|
| committer | AL-LCL <alvin@alvinhavel.com> | 2023-05-19 10:39:49 +0200 | 
| commit | 58ebd3bc0f00c532e97e9a5571471ffab87934ba (patch) | |
| tree | 6e099e59af07206df6edf2b0c585d0c5a466d4bd /client/modules/module.py | |
Diffstat (limited to 'client/modules/module.py')
| -rw-r--r-- | client/modules/module.py | 20 | 
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 | 
