feat: config variables support parsing from function

This commit is contained in:
debugtalk
2019-09-19 00:22:18 +08:00
parent df1453743a
commit fc9a44ce09
7 changed files with 78 additions and 6 deletions

View File

@@ -111,3 +111,10 @@ def alter_response(response):
def alter_response_error(response):
# NameError
not_defined_variable
def gen_variables():
return {
"var_a": 1,
"var_b": 2
}