2021-08-23 09:59:01 -04:00
|
|
|
import click
|
|
|
|
|
|
|
|
from .members import members
|
2021-08-24 01:48:55 -04:00
|
|
|
from .groups import groups
|
2021-09-08 09:32:34 -04:00
|
|
|
from .positions import positions
|
2021-08-24 15:37:05 -04:00
|
|
|
from .updateprograms import updateprograms
|
2021-09-11 13:33:43 -04:00
|
|
|
from .mysql import mysql
|
|
|
|
from .postgresql import postgresql
|
2021-09-25 15:16:22 -04:00
|
|
|
from .mailman import mailman
|
2021-08-23 09:59:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
@click.group()
|
2021-08-28 23:09:02 -04:00
|
|
|
def cli():
|
|
|
|
pass
|
2021-08-23 09:59:01 -04:00
|
|
|
|
|
|
|
|
|
|
|
cli.add_command(members)
|
2021-08-24 01:48:55 -04:00
|
|
|
cli.add_command(groups)
|
2021-09-08 09:32:34 -04:00
|
|
|
cli.add_command(positions)
|
2021-08-24 15:37:05 -04:00
|
|
|
cli.add_command(updateprograms)
|
2021-09-11 13:33:43 -04:00
|
|
|
cli.add_command(mysql)
|
|
|
|
cli.add_command(postgresql)
|
2021-09-25 15:16:22 -04:00
|
|
|
cli.add_command(mailman)
|