summaryrefslogtreecommitdiff
path: root/ssh_remote.py
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-02-13 21:39:41 +0100
committerAnton Khirnov <anton@khirnov.net>2020-02-13 21:39:41 +0100
commitf1ef9c053c84515761f59412a91ca3adbc8e7392 (patch)
tree9adfb42a73cf1aa61556d16ee5665e6c3f611dd4 /ssh_remote.py
parentb476a22f4a85d90ccaec2ee27a528d5bfe428a82 (diff)
Move the python files to a package.
Diffstat (limited to 'ssh_remote.py')
-rw-r--r--ssh_remote.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/ssh_remote.py b/ssh_remote.py
deleted file mode 100644
index 89e8f17..0000000
--- a/ssh_remote.py
+++ /dev/null
@@ -1,19 +0,0 @@
-class SSHRemote:
- """
- Specification of an SSH remote host, represented by a combination of host,
- port and username, plus an optional proxy remote.
- :param str host:
- :param int port:
- :param str username:
- :param SSHRemote proxy_remote: proxy through which the connection should be
- tunnelled
- """
- host = None
- port = None
- username = None
- proxy_remote = None
- def __init__(self, host, port, username, proxy_remote = None):
- self.host = host
- self.port = port
- self.username = username
- self.proxy_remote = proxy_remote