blob: 00b9f9c5f53f0576ff7daca5595e8cde1cd56ca8 [file] [log] [blame]
"""Dynamically decide from where to import other SDK modules.
All other protorpc code should import other SDK modules from
this module. If necessary, add new imports here (in both places).
"""
__author__ = 'yey@google.com (Ye Yuan)'
# pylint: disable=g-import-not-at-top
# pylint: disable=unused-import
try:
from google.net.proto import ProtocolBuffer
except ImportError:
# MOE:begin_strip
from google3.net.proto import ProtocolBuffer
# MOE:end_strip
pass