Coverage for src/meshadmin/cli/commands/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-04-22 07:09 +0200
« prev ^ index » next coverage.py v7.6.12, created at 2025-04-22 07:09 +0200
1from meshadmin.cli.commands.context import context_app
2from meshadmin.cli.commands.host import host_app
3from meshadmin.cli.commands.nebula import nebula_app
4from meshadmin.cli.commands.network import network_app
5from meshadmin.cli.commands.service import service_app
6from meshadmin.cli.commands.template import template_app
8__all__ = [
9 "nebula_app",
10 "service_app",
11 "network_app",
12 "template_app",
13 "host_app",
14 "context_app",
15]