forked from stove/risotto
14 lines
240 B
Python
14 lines
240 B
Python
MULTI_FUNCTIONS = []
|
|
CONFIGS = {}
|
|
|
|
|
|
def _(s):
|
|
return s
|
|
|
|
|
|
def multi_function(function):
|
|
global MULTI_FUNCTIONS
|
|
name = function.__name__
|
|
if name not in MULTI_FUNCTIONS:
|
|
MULTI_FUNCTIONS.append(name)
|
|
return function
|