9 lines
174 B
Python
9 lines
174 B
Python
|
class Config:
|
||
|
config = {
|
||
|
"isCypher": False,
|
||
|
"CypherMethod": "base64"
|
||
|
}
|
||
|
|
||
|
def getconfig(self, config_name):
|
||
|
return self.config[config_name]
|