searxng/searx/services/__init__.py
Markus Heiser 6563396433 [mod] add a process manager infrastructure (based on hapless)
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2022-09-26 16:46:15 +02:00

10 lines
296 B
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
# lint: pylint
"""Services managed by SearXNG"""
from pathlib import Path
import tempfile
# hapless files are stored in /tmp/SearXNG .. may be we should store them on a
# different location.
SEARXNG_HAP_DIR = Path(tempfile.gettempdir()) / "SearXNG"