Return the shared system temporary directory used by local tools.
()
| 81 | |
| 82 | |
| 83 | def get_astrbot_system_tmp_path() -> str: |
| 84 | """Return the shared system temporary directory used by local tools.""" |
| 85 | return os.path.realpath(os.path.join(tempfile.gettempdir(), ".astrbot")) |
| 86 | |
| 87 | |
| 88 | def get_astrbot_site_packages_path() -> str: |
no outgoing calls
no test coverage detected