mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
10 lines
296 B
Python
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"
|