2019-09-22 20:25:33 +00:00
|
|
|
"""QMK CLI Subcommands
|
|
|
|
|
|
|
|
We list each subcommand here explicitly because all the reliable ways of searching for modules are slow and delay startup.
|
|
|
|
"""
|
2020-03-13 22:47:04 +00:00
|
|
|
from milc import cli
|
|
|
|
|
2019-09-22 20:25:33 +00:00
|
|
|
from . import cformat
|
|
|
|
from . import compile
|
|
|
|
from . import config
|
2019-10-08 18:06:26 +00:00
|
|
|
from . import docs
|
2019-09-22 20:25:33 +00:00
|
|
|
from . import doctor
|
2019-10-05 06:38:34 +00:00
|
|
|
from . import flash
|
2019-09-22 20:25:33 +00:00
|
|
|
from . import hello
|
|
|
|
from . import json
|
2020-03-10 20:51:19 +00:00
|
|
|
from . import json2c
|
2019-10-07 18:32:30 +00:00
|
|
|
from . import list
|
2019-11-13 04:55:41 +00:00
|
|
|
from . import kle2json
|
2019-09-22 20:25:33 +00:00
|
|
|
from . import new
|
|
|
|
from . import pyformat
|
|
|
|
from . import pytest
|
2020-03-13 22:47:04 +00:00
|
|
|
|
|
|
|
if not hasattr(cli, 'config_source'):
|
|
|
|
cli.log.warning("Your QMK CLI is out of date. Please upgrade with `pip3 install --upgrade qmk` or by using your package manager.")
|