__init__.py 338 B

12345678910111213
  1. """QMK CLI Subcommands
  2. We list each subcommand here explicitly because all the reliable ways of searching for modules are slow and delay startup.
  3. """
  4. from . import cformat
  5. from . import compile
  6. from . import config
  7. from . import doctor
  8. from . import hello
  9. from . import json
  10. from . import new
  11. from . import pyformat
  12. from . import pytest