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>
16 lines
375 B
Python
16 lines
375 B
Python
from sanic.models.server_types import ConnInfo, Signal
|
|
from sanic.server.async_server import AsyncioServer
|
|
from sanic.server.loop import try_use_uvloop
|
|
from sanic.server.protocols.http_protocol import HttpProtocol
|
|
from sanic.server.runners import serve
|
|
|
|
|
|
__all__ = (
|
|
"AsyncioServer",
|
|
"ConnInfo",
|
|
"HttpProtocol",
|
|
"Signal",
|
|
"serve",
|
|
"try_use_uvloop",
|
|
)
|