summaryrefslogtreecommitdiff
path: root/macaroonbakery/httpbakery/agent/__init__.py
diff options
context:
space:
mode:
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',
+]