mirror of
https://github.com/Xahau/xahaud.git
synced 2026-01-09 09:15:17 +00:00
6 lines
223 B
Python
6 lines
223 B
Python
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
class ServerReader(object):
|
|
def __init__(self, config):
|
|
raise ValueError('Direct server connections are not yet implemented.')
|