diff options
author | Devaev Maxim <[email protected]> | 2020-05-17 15:24:29 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-05-17 16:09:58 +0300 |
commit | 1fd33bc8ed29c3aaeb6c9971e5879c04113246a3 (patch) | |
tree | db022c9c291fdd2495ddd02aa89b532ce4d011cc /kvmd/apps/vnc/server.py | |
parent | 1251b8d705c5a48a78290b2d25cd4de048245035 (diff) |
refactoring
Diffstat (limited to 'kvmd/apps/vnc/server.py')
-rw-r--r-- | kvmd/apps/vnc/server.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kvmd/apps/vnc/server.py b/kvmd/apps/vnc/server.py index baec8d36..b860b261 100644 --- a/kvmd/apps/vnc/server.py +++ b/kvmd/apps/vnc/server.py @@ -34,6 +34,12 @@ import aiohttp from ...logging import get_logger +from ...clients.kvmd import KvmdError +from ...clients.kvmd import KvmdClient + +from ...clients.streamer import StreamerError +from ...clients.streamer import StreamerClient + from ... import aiotools from .rfb import RfbClient @@ -44,12 +50,6 @@ from .rfb.errors import RfbError from .vncauth import VncAuthKvmdCredentials from .vncauth import VncAuthManager -from .kvmd import KvmdError -from .kvmd import KvmdClient - -from .streamer import StreamerError -from .streamer import StreamerClient - from .render import make_text_jpeg |