Skip to content

Commit eb37a21

Browse files
authored
Restore server.py (#372)
1 parent aff43d3 commit eb37a21

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

jupyterlab_server/server.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright (c) Jupyter Development Team.
2+
# Distributed under the terms of the Modified BSD License.
3+
4+
"""Server api."""
5+
# FIXME TODO Deprecated remove this file for the next major version
6+
# Downstream package must import those items from `jupyter_server` directly
7+
from jupyter_server import _tz as tz
8+
from jupyter_server.base.handlers import (
9+
APIHandler,
10+
FileFindHandler,
11+
JupyterHandler,
12+
json_errors,
13+
)
14+
from jupyter_server.extension.serverextension import (
15+
GREEN_ENABLED,
16+
GREEN_OK,
17+
RED_DISABLED,
18+
RED_X,
19+
)
20+
from jupyter_server.serverapp import ServerApp, aliases, flags
21+
from jupyter_server.utils import url_escape, url_path_join

0 commit comments

Comments
 (0)