You've already forked STARK
mirror of
https://github.com/MarkParker5/STARK.git
synced 2025-11-28 21:39:53 +02:00
7 lines
219 B
Python
7 lines
219 B
Python
|
|
class Response:
|
||
|
|
def __init__(this, voice, text, callback = None, thread = None):
|
||
|
|
this.voice: str = voice
|
||
|
|
this.text: str = text
|
||
|
|
this.callback: Callback = callback
|
||
|
|
this.thread = thread
|