Create switchTrigger_template.py

This commit is contained in:
chrys87 2016-09-22 11:50:20 +02:00 committed by GitHub
parent 352654756e
commit 181d289b76

View File

@ -0,0 +1,23 @@
#!/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