示例#1
0
文件: plugin.py 项目: MrJohz/K-Eight
 def decorator(function):
     function = PluginFunction(function)
     regex2 = re.compile(regex, flags)
     function.add_regex(regex2)
     return function
示例#2
0
文件: plugin.py 项目: MrJohz/K-Eight
 def decorator(function):
     function = PluginFunction(function)
     for regex in regexes:
         function.add_regex(regex)
     return function