__init__.py 419 B

1234567891011121314151617
  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 docs
  8. from . import doctor
  9. from . import flash
  10. from . import hello
  11. from . import json
  12. from . import list
  13. from . import kle2json
  14. from . import new
  15. from . import pyformat
  16. from . import pytest