Onionr/src/apiservers/__init__.py

11 lines
263 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
"""
2019-07-12 07:07:30 +00:00
from . import public, private
2019-07-12 07:07:30 +00:00
PublicAPI = public.PublicAPI
ClientAPI = private.PrivateAPI