Files
fenrir/src/fenrir/commands/switchTrigger_template.py
chrys 3c3c440296 Revert "Merge branch 'master' of github.com:chrys87/fenrir"
This reverts commit 2ce5adba82, reversing
changes made to bf807c2519.
2018-03-09 15:28:07 +01:00

24 lines
491 B
Python

#!/bin/python
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
class command():
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def getDescription(self):
return 'No description found'
def unload(self):
pass
def load(self):
pass
def setCallback(self, callback):
pass