15 lines
319 B
Python
15 lines
319 B
Python
from typing import TYPE_CHECKING, Any
|
|
|
|
if TYPE_CHECKING:
|
|
from core.tools.tool_file_manager import ToolFileManager
|
|
|
|
tool_file_manager: dict[str, Any] = {
|
|
'manager': None
|
|
}
|
|
|
|
|
|
class ToolFileParser:
|
|
@staticmethod
|
|
def get_tool_file_manager() -> "ToolFileManager":
|
|
return tool_file_manager["manager"]
|