__main__.py 248 B

123456789
  1. # Copyright (c) Jupyter Development Team.
  2. # Distributed under the terms of the Modified BSD License.
  3. """CLI entry point for jupyterlab server."""
  4. import sys
  5. from jupyterlab_server.app import main
  6. sys.exit(main()) # type:ignore[no-untyped-call]