File size: 443 Bytes
dab441f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Supermail package exports."""

from .models import SupportAction, SupportObservation, SupportState

try:  # pragma: no cover - optional during local editing without dependencies
    from .client import SupermailEnv, SupportSimEnv
except Exception:  # pragma: no cover
    SupermailEnv = None
    SupportSimEnv = None

__all__ = [
    "SupportAction",
    "SupportObservation",
    "SupermailEnv",
    "SupportSimEnv",
    "SupportState",
]