1 2 3 4 5 6 7 8 9 10 11 12
|
from .models import (JobExeError, JobResult, LogLevels,
ServiceResourceTypes, JobTypes, JobStates,
ServiceJob, ServiceEntryPoint,
add_smrtlink_server_args)
# this module imports the models, so the model loading
# must be called first to avoid cyclic-dependencies
from ._service_access_layer import (ServiceAccessLayer,
SmrtLinkAuthClient,
get_smrtlink_client,
get_smrtlink_client_from_args)
# There's some crufty legacy naming. Using a cleaner model here
SmrtLinkClient = ServiceAccessLayer
|