32 lines
760 B
Python
32 lines
760 B
Python
# -*- coding: UTF-8 -*-
|
|
"""This file is here to maintain backwards compatability."""
|
|
from __future__ import unicode_literals
|
|
|
|
from .models import *
|
|
from .utils import *
|
|
from ._graphql import (
|
|
FLAGS,
|
|
WHITESPACE,
|
|
ConcatJSONDecoder,
|
|
graphql_color_to_enum,
|
|
get_customization_info,
|
|
graphql_to_sticker,
|
|
graphql_to_attachment,
|
|
graphql_to_extensible_attachment,
|
|
graphql_to_subattachment,
|
|
graphql_to_live_location,
|
|
graphql_to_poll,
|
|
graphql_to_poll_option,
|
|
graphql_to_plan,
|
|
graphql_to_quick_reply,
|
|
graphql_to_message,
|
|
graphql_to_message_reply,
|
|
graphql_to_user,
|
|
graphql_to_thread,
|
|
graphql_to_group,
|
|
graphql_to_page,
|
|
graphql_queries_to_json,
|
|
graphql_response_to_json,
|
|
GraphQL,
|
|
)
|