11 lines
179 B
Python
11 lines
179 B
Python
|
#encoding = utf8
|
||
|
|
||
|
|
||
|
class TTSAudioIndex:
|
||
|
def __init__(self):
|
||
|
self._index = 0
|
||
|
|
||
|
def get_index(self):
|
||
|
self._index = self._index + 1
|
||
|
return self._index
|