Files
bot-bottle/bot_bottle/orchestrator/http_contract.py
T

7 lines
232 B
Python

"""Dependency-free constants shared by orchestrator HTTP clients and server."""
ORCHESTRATOR_AUTH_HEADER = "x-bot-bottle-orchestrator-auth"
MAX_BODY_BYTES = 1 * 1024 * 1024
__all__ = ["MAX_BODY_BYTES", "ORCHESTRATOR_AUTH_HEADER"]