SIMNet/simnet/client/headers.py
洛水居室 14b107b5a1
🎨 Organize client subdirectories and add __all__ variable
Moves all subdirectories from 'simnet/client' to 'simnet/client/components' and adds the `__all__` variable to all affected files.

This change is intended to improve code organization and make it easier to manage exported symbols from these modules.
2023-05-05 20:04:41 +08:00

8 lines
181 B
Python

from httpx import Headers as _Headers
__all__ = ("Headers",)
class Headers(_Headers):
"""An extension of the `httpx.Headers` class that includes additional functionality."""