9 lines
134 B
Python
9 lines
134 B
Python
"""
|
|
Allow running the CLI via: python -m sglang_router
|
|
"""
|
|
|
|
from sglang_router.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|