16 lines
273 B
Python
16 lines
273 B
Python
|
#!/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Fenrir TTY screen reader
|
||
|
# By Chrys, Storm Dragon, and contributers.
|
||
|
|
||
|
import time
|
||
|
from fenrirscreenreader.core import debug
|
||
|
|
||
|
outputData = {
|
||
|
'nextFlush': time.time(),
|
||
|
'messageText': '',
|
||
|
'messageOffset': None,
|
||
|
'cursorOffset': None,
|
||
|
}
|