Onionr/src/apiservers/__init__.py
Kevin Froman 1019ff0773 * made api servers lint compliant
* made bigbrother lint compliant
2019-12-20 02:37:12 -06:00

11 lines
263 B
Python
Executable File

"""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
"""
from . import public, private
PublicAPI = public.PublicAPI
ClientAPI = private.PrivateAPI