Spaces:
Runtime error
Runtime error
import click | |
from click_help_colors import HelpColorsGroup | |
def main() -> None: | |
"""TTS Service CLI""" | |
def serve(share: bool) -> None: | |
"""Start the TTS Service""" | |
from tts_service.app import app | |
app.launch(share=share) | |
if __name__ == "__main__": | |
main() | |