Import utils.py and graphql.py directly into the global module

This commit is contained in:
Mads Marquart
2019-02-24 23:08:23 +01:00
parent c1861627fb
commit 0561718917

View File

@@ -4,11 +4,13 @@
:copyright: (c) 2015 - 2019 by Taehoon Kim :copyright: (c) 2015 - 2019 by Taehoon Kim
:license: BSD 3-Clause, see LICENSE for more details. :license: BSD 3-Clause, see LICENSE for more details.
""" """
from __future__ import unicode_literals from __future__ import unicode_literals
# These imports are far too general, but they're needed for backwards compatbility.
from .utils import *
from .graphql import *
from .models import * from .models import *
from .client import * from ._client import Client
__title__ = "fbchat" __title__ = "fbchat"
__version__ = "1.6.3" __version__ = "1.6.3"