a1abe159fa
Add deploy/manage.sh bootstrap for git.bz121.com/dekun/crypto_okx and point docs at this repo. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
206 B
Python
10 lines
206 B
Python
"""Soft-nav helper (standalone: always False)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from flask import Request
|
|
|
|
|
|
def request_is_hub_soft_nav(req: Request | None = None) -> bool:
|
|
return False
|