참고소스 수정본

This commit is contained in:
LASTA_DEV01\lasta
2026-05-12 19:40:31 +09:00
parent 0f34a451fc
commit 2e9204243d
8708 changed files with 3259488 additions and 869 deletions

View File

@@ -0,0 +1,19 @@
from typer import Exit, echo, Typer
app: Typer = Typer(help="Instructor Hub CLI (Deprecated)")
@app.command(name="hub")
def hub() -> None:
"""
This command has been deprecated. The instructor hub is no longer available.
Please refer to our cookbook examples at https://python.useinstructor.com/examples/
"""
echo(
"The instructor hub has been deprecated. Please refer to our cookbook examples at https://python.useinstructor.com/examples/"
)
raise Exit(1)
if __name__ == "__main__":
app()