hack-house/.venv/lib/python3.12/site-packages/sanic/__main__.py
leetcrypt bb1d662ee1 chore: rename project coven → hack-house ⛧
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>
2026-05-30 13:29:14 -07:00

30 lines
675 B
Python

import tracerite
try:
tracerite.load()
except Exception as exc:
raise RuntimeError(
"Failed to initialize tracerite. Please verify that tracerite is "
"correctly installed and compatible with this environment."
) from exc
from sanic.cli.app import SanicCLI
from sanic.compat import OS_IS_WINDOWS, enable_windows_color_support
from sanic.startup.errors import maybe_handle_startup_error
if OS_IS_WINDOWS:
enable_windows_color_support()
def main(args=None):
try:
cli = SanicCLI()
cli.attach()
cli.run(args)
except Exception as e:
maybe_handle_startup_error(e)
if __name__ == "__main__":
main()