mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-07 20:55:53 +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.')
|