Files
fenrir/src/fenrirscreenreader/commands/command_template.py
2025-07-07 00:42:23 -04:00

29 lines
482 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributors.
from fenrirscreenreader.core.i18n import _
class command:
def __init__(self):
pass
def initialize(self, environment):
self.env = environment
def shutdown(self):
pass
def get_description(self):
return "No description found"
def run(self):
pass
def set_callback(self, callback):
pass