first commit

This commit is contained in:
2022-04-21 19:23:01 +09:00
commit cfd562fd13
152 changed files with 54937 additions and 0 deletions

11
lib/tool_base/__init__.py Normal file
View File

@@ -0,0 +1,11 @@
from framework import logger
from .subprocess import ToolSubprocess
def d(data):
if type(data) in [type({}), type([])]:
import json
return "\n" + json.dumps(data, indent=4, ensure_ascii=False)
else:
return str(data)