from abc import ABC, abstractmethod | |
class VoiceModule(ABC): | |
def __init__(self): | |
pass | |
def update_usage(self): | |
pass | |
def get_remaining_characters(self): | |
pass | |
def generate_voice(self,text, outputfile): | |
pass |
from abc import ABC, abstractmethod | |
class VoiceModule(ABC): | |
def __init__(self): | |
pass | |
def update_usage(self): | |
pass | |
def get_remaining_characters(self): | |
pass | |
def generate_voice(self,text, outputfile): | |
pass |