Files
Hippolyzer/pyogp/lib/base/network/__init__.py

11 lines
229 B
Python

from stdlib_client import StdLibClient
from mockup_client import MockupClient
from interfaces import IRESTClient
from exc import HTTPError
from zope.component import provideUtility
provideUtility(StdLibClient(), IRESTClient)