mirror of
https://github.com/yuruotong1/autoMate.git
synced 2026-03-22 13:07:17 +08:00
11 lines
240 B
Python
11 lines
240 B
Python
class ToolsBase:
|
|
def __init__(self):
|
|
self.name = ""
|
|
self.description = ""
|
|
|
|
def get_info(self):
|
|
return {"name": self.name, "description": self.description}
|
|
|
|
def run(self, param=None):
|
|
pass
|