summaryrefslogtreecommitdiff
path: root/client/modules/module.py
blob: 14c6fea8ef5a3a931656453240c0ec44f17a77ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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