18 lines
337 B
Python
18 lines
337 B
Python
#!/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
import time
|
|
<<<<<<< HEAD
|
|
from core import debug
|
|
from core.inputDriver import inputDriver
|
|
=======
|
|
from fenrir.core import debug
|
|
>>>>>>> 1.5
|
|
|
|
class driver(inputDriver):
|
|
def __init__(self):
|
|
inputDriver.__init__(self)
|