16 lines
282 B
Python
16 lines
282 B
Python
#!/usr/bin/env python3
|
|
# -*- 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,
|
|
}
|