Onionr/src/apiservers/__init__.py

10 lines
226 B
Python
Raw Normal View History

"""Flask WSGI apps for the public and private API servers.
Public is net-facing server meant for other nodes
Private is meant for controlling and accessing this node
"""
2022-01-11 07:20:15 +00:00
from . import private
ClientAPI = private.PrivateAPI