mirror of
https://github.com/langgenius/dify.git
synced 2026-07-20 09:38:32 +08:00
Co-authored-by: 盐粒 Yanli <mail@yanli.one> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai>
18 lines
427 B
Python
18 lines
427 B
Python
"""Compatibility shim for historical `shellctl.server.cli` imports.
|
|
|
|
Job-management commands now live in `shellctl.cli`. This
|
|
module is intentionally a thin legacy re-export for callers that still import
|
|
CLI symbols from `shellctl.server.cli`.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from shellctl.cli import cli, main
|
|
from shellctl.server.serve import serve_command
|
|
|
|
__all__ = [
|
|
"cli",
|
|
"main",
|
|
"serve_command",
|
|
]
|