Files
pyfa/service/port/__init__.py

9 lines
213 B
Python

from .efs import EfsPort
def __getattr__(name):
if name == "Port":
from service.port.port import Port
return Port
raise AttributeError("module %r has no attribute %r" % (__name__, name))