From fae7032346bf14129f27cd23a5397b524bf450aa Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 17 Nov 2023 11:59:50 -0500 Subject: [PATCH] removed invalid reference to config.py --- aprsd/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/main.py b/aprsd/main.py index 68d454b..f55be0b 100644 --- a/aprsd/main.py +++ b/aprsd/main.py @@ -70,7 +70,7 @@ def main(): # First import all the possible commands for the CLI # The commands themselves live in the cmds directory from .cmds import ( # noqa - completion, config, dev, fetch_stats, healthcheck, list_plugins, listen, + completion, dev, fetch_stats, healthcheck, list_plugins, listen, send_message, server, webchat, ) cli(auto_envvar_prefix="APRSD")