21 lines
364 B
Python
21 lines
364 B
Python
#!/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
from core import debug
|
|
|
|
runtime = {
|
|
'speechDriver': None,
|
|
'screenDriver': None,
|
|
'soundDriver': None,
|
|
'inputDriver': None,
|
|
'brailleDriver': None,
|
|
'inputManager': None,
|
|
'commandManager': None,
|
|
'screenManager': None,
|
|
'outputManager': None,
|
|
'debug':None,
|
|
}
|