Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
345 B
Python
24 lines
345 B
Python
"""Utilities for asyncio-friendly file handling."""
|
|
|
|
from . import tempfile
|
|
from .threadpool import (
|
|
open,
|
|
stderr,
|
|
stderr_bytes,
|
|
stdin,
|
|
stdin_bytes,
|
|
stdout,
|
|
stdout_bytes,
|
|
)
|
|
|
|
__all__ = [
|
|
"open",
|
|
"tempfile",
|
|
"stdin",
|
|
"stdout",
|
|
"stderr",
|
|
"stdin_bytes",
|
|
"stdout_bytes",
|
|
"stderr_bytes",
|
|
]
|