Files
zsa_qmk_firmware/lib/python/qmk/cli/__init__.py
T

18 lines
419 B
Python
Raw Normal View History

2019-09-22 13:25:33 -07:00
"""QMK CLI Subcommands
We list each subcommand here explicitly because all the reliable ways of searching for modules are slow and delay startup.
"""
from . import cformat
from . import compile
from . import config
from . import docs
2019-09-22 13:25:33 -07:00
from . import doctor
2019-10-04 23:38:34 -07:00
from . import flash
2019-09-22 13:25:33 -07:00
from . import hello
from . import json
2019-10-07 14:32:30 -04:00
from . import list
from . import kle2json
2019-09-22 13:25:33 -07:00
from . import new
from . import pyformat
from . import pytest