Skip to content

Commit

Permalink
Restore server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval committed Feb 7, 2023
1 parent aff43d3 commit f435271
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions jupyterlab_server/server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.

"""Server api."""
# FIXME TODO Deprecated remove this file for the next major version
# Downstream package must import those items from `jupyter_server` directly
from jupyter_server import _tz as tz
from jupyter_server.base.handlers import (
APIHandler,
FileFindHandler,
JupyterHandler,
json_errors,
)
from jupyter_server.extension.serverextension import (
GREEN_ENABLED,
GREEN_OK,
RED_DISABLED,
RED_X,
)
from jupyter_server.serverapp import ServerApp, aliases, flags
from jupyter_server.utils import url_escape, url_path_join

0 comments on commit f435271

Please sign in to comment.