from rest_framework.authentication import TokenAuthentication


class BearerTokenAuthentication(TokenAuthentication):
    """Accept 'Bearer <token>' in addition to the default 'Token <token>'."""
    keyword = "Bearer"
