Ishangtxl's picture
Sync from GitHub c4e4dad
a537615 verified
raw
history blame contribute delete
274 Bytes
"""Legacy COBOL Migration Workbench."""
try:
from .client import LegacyCobolEnv
from .models import LegacyCobolState
except ImportError:
from client import LegacyCobolEnv
from models import LegacyCobolState
__all__ = ["LegacyCobolEnv", "LegacyCobolState"]