File size: 268 Bytes
ad80dda
27f1540
ad80dda
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Shared transcript type aliases.

The canonical definitions live in models.py.
This module re-exports them so transcript users can import from transcript.types.
"""

from models import Speaker, Turn, TurnType

__all__ = [
    "Turn",
    "Speaker",
    "TurnType",
]