File size: 158 Bytes
6b408d7 | 1 2 3 4 5 6 7 8 9 10 | """API package."""
from app.api.routes import health
from app.api.routes import voice_detection
__all__ = [
"health",
"voice_detection",
]
|
6b408d7 | 1 2 3 4 5 6 7 8 9 10 | """API package."""
from app.api.routes import health
from app.api.routes import voice_detection
__all__ = [
"health",
"voice_detection",
]
|