summaryrefslogtreecommitdiff
path: root/macaroonbakery/httpbakery/__init__.py
blob: 3b40dc224cb1c05a64b09a56abd1df28eee53d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright 2017 Canonical Ltd.
# Licensed under the LGPLv3, see LICENCE file for details.
from macaroonbakery.httpbakery.client import BakeryAuth, extract_macaroons
from macaroonbakery.httpbakery.error import (
    BAKERY_PROTOCOL_HEADER, discharged_required_response, request_version
)
from macaroonbakery.httpbakery.keyring import ThirdPartyLocator


__all__ = [
    'BAKERY_PROTOCOL_HEADER',
    'BakeryAuth',
    'ThirdPartyLocator',
    'discharged_required_response',
    'extract_macaroons',
    'request_version',
]