summaryrefslogtreecommitdiff
path: root/macaroonbakery/httpbakery/agent/__init__.py
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2017-11-06 10:04:48 +0000
committerColin Watson <cjwatson@debian.org>2017-11-06 10:04:48 +0000
commit37d61d0415f6cc96a7a9abe057e1ae0f89fd977e (patch)
tree4ca3c2560d2ba062adb7de86d047d67db8984940 /macaroonbakery/httpbakery/agent/__init__.py
parent3d9eaeb5dacee168a93da090e2c0d46eedbe51a2 (diff)
Import py-macaroon-bakery_0.0.5.orig.tar.gz
Diffstat (limited to 'macaroonbakery/httpbakery/agent/__init__.py')
-rw-r--r--macaroonbakery/httpbakery/agent/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/macaroonbakery/httpbakery/agent/__init__.py b/macaroonbakery/httpbakery/agent/__init__.py
new file mode 100644
index 0000000..db252de
--- /dev/null
+++ b/macaroonbakery/httpbakery/agent/__init__.py
@@ -0,0 +1,17 @@
+# Copyright 2017 Canonical Ltd.
+# Licensed under the LGPLv3, see LICENCE file for details.
+
+from macaroonbakery.httpbakery.agent.agent import (
+ load_agent_file,
+ Agent,
+ AgentInteractor,
+ AgentFileFormatError,
+ AuthInfo,
+)
+__all__ = [
+ 'Agent',
+ 'AgentFileFormatError',
+ 'AgentInteractor',
+ 'AuthInfo',
+ 'load_agent_file',
+]