We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080bc1e commit 4b4c338Copy full SHA for 4b4c338
usr/lib/python3/dist-packages/linuxmusterCli/main.py
@@ -21,7 +21,8 @@
21
check_parents,
22
quotas,
23
student,
24
- schoolclass
+ schoolclass,
25
+ mgmtgroup,
26
)
27
from typers.format import *
28
from typing_extensions import Annotated
@@ -73,6 +74,7 @@ def handle(self, record):
73
74
app.add_typer(quotas.app, name='quotas')
75
app.add_typer(student.app, name='student')
76
app.add_typer(schoolclass.app, name='schoolclass')
77
+app.add_typer(mgmtgroup.app, name='mgmtgroup')
78
79
@app.callback()
80
def output(
usr/lib/python3/dist-packages/linuxmusterCli/typers/__init__.py
@@ -11,3 +11,4 @@
11
from .quotas import *
12
from .student import *
13
from .schoolclass import *
14
+from .mgmtgroup import *
0 commit comments