Files
mongo/tools/flag_sync/client.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
201 B
Python
Raw Normal View History

import typer
from tools.flag_sync import flag, namespace
app = typer.Typer()
app.add_typer(flag.app, name="flag")
app.add_typer(namespace.app, name="namespace")
if __name__ == "__main__":
app()