You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
668 B
31 lines
668 B
import click
|
|
|
|
from .members import members
|
|
from .groups import groups
|
|
from .positions import positions
|
|
from .updateprograms import updateprograms
|
|
from .mysql import mysql
|
|
from .postgresql import postgresql
|
|
from .mailman import mailman
|
|
from .cloud import cloud
|
|
from .k8s import k8s
|
|
from .registry import registry
|
|
from .webhosting import webhosting
|
|
|
|
|
|
@click.group()
|
|
def cli():
|
|
pass
|
|
|
|
|
|
cli.add_command(members)
|
|
cli.add_command(groups)
|
|
cli.add_command(positions)
|
|
cli.add_command(updateprograms)
|
|
cli.add_command(mysql)
|
|
cli.add_command(postgresql)
|
|
cli.add_command(mailman)
|
|
cli.add_command(cloud)
|
|
cli.add_command(k8s)
|
|
cli.add_command(registry)
|
|
cli.add_command(webhosting)
|
|
|