You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
496 B
Python
15 lines
496 B
Python
"""Terminals served to xterm.js using Tornado websockets"""
|
|
|
|
# Copyright (c) Jupyter Development Team
|
|
# Copyright (c) 2014, Ramalingam Saravanan <sarava@sarava.net>
|
|
# Distributed under the terms of the Simplified BSD License.
|
|
|
|
from ._version import __version__ # noqa: F401
|
|
from .management import (
|
|
NamedTermManager, # noqa: F401
|
|
SingleTermManager, # noqa: F401
|
|
TermManagerBase, # noqa: F401
|
|
UniqueTermManager, # noqa: F401
|
|
)
|
|
from .websocket import TermSocket # noqa: F401
|