16 lines
356 B
Python
16 lines
356 B
Python
from rscder.plugins.basic import BasicPlugin
|
|
from ai_method import AI_METHOD
|
|
|
|
|
|
class AIPlugin(BasicPlugin):
|
|
|
|
@staticmethod
|
|
def info():
|
|
return {
|
|
'name': 'AI 变化检测',
|
|
'author': 'RSC',
|
|
'version': '1.0.0',
|
|
'description': 'AI 变化检测',
|
|
'category': 'Ai method'
|
|
}
|
|
|