9 lines
185 B
Python
9 lines
185 B
Python
import os
|
|
|
|
from utils import MakeTool
|
|
from core.config import settings
|
|
|
|
make_tool = MakeTool(os.path.join(settings.ROOT_DIR, 'ApkTool/channel.json'))
|
|
a, b = make_tool.run()
|
|
print(a, b)
|