17 lines
506 B
Python
17 lines
506 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributers.
|
|
|
|
import importlib.util
|
|
import os
|
|
_spec = importlib.util.spec_from_file_location("vmenu_search_base", os.path.join(os.path.dirname(__file__), "vmenu_search_base.py"))
|
|
_module = importlib.util.module_from_spec(_spec)
|
|
_spec.loader.exec_module(_module)
|
|
VMenuSearchCommand = _module.VMenuSearchCommand
|
|
|
|
class command(VMenuSearchCommand):
|
|
def __init__(self):
|
|
super().__init__('z')
|