Statistics
| Branch: | Tag: | Revision:

root / ncclient / session / __init__.py @ a956ef07

History | View | Annotate | Download (735 Bytes)

1 7101ce49 Shikhar Bhushan
# Copyright 2009 Shikhar Bhushan
2 7101ce49 Shikhar Bhushan
#
3 7101ce49 Shikhar Bhushan
# Licensed under the Apache License, Version 2.0 (the "License");
4 7101ce49 Shikhar Bhushan
# you may not use this file except in compliance with the License.
5 7101ce49 Shikhar Bhushan
# You may obtain a copy of the License at
6 7101ce49 Shikhar Bhushan
#
7 7101ce49 Shikhar Bhushan
#    http://www.apache.org/licenses/LICENSE-2.0
8 7101ce49 Shikhar Bhushan
#
9 7101ce49 Shikhar Bhushan
# Unless required by applicable law or agreed to in writing, software
10 7101ce49 Shikhar Bhushan
# distributed under the License is distributed on an "AS IS" BASIS,
11 7101ce49 Shikhar Bhushan
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 7101ce49 Shikhar Bhushan
# See the License for the specific language governing permissions and
13 7101ce49 Shikhar Bhushan
# limitations under the License.
14 7101ce49 Shikhar Bhushan
15 a956ef07 Shikhar Bhushan
from session import SessionError, SessionCloseError
16 a956ef07 Shikhar Bhushan
from ssh import SSHSession
17 7101ce49 Shikhar Bhushan
18 a956ef07 Shikhar Bhushan
__all__ = [
19 a956ef07 Shikhar Bhushan
    'SSHSession',
20 a956ef07 Shikhar Bhushan
    'SessionError',
21 a956ef07 Shikhar Bhushan
    'SessionCloseError',
22 a956ef07 Shikhar Bhushan
]