2019-02-10 17:39:06 +00:00
|
|
|
from ogn_python import app
|
|
|
|
|
|
|
|
from .database import user_cli as database_cli
|
|
|
|
from .export import user_cli as export_cli
|
|
|
|
from .flights import user_cli as flights_cli
|
2019-02-25 19:00:51 +00:00
|
|
|
from .gateway import user_cli as gateway_cli
|
2019-02-10 17:39:06 +00:00
|
|
|
from .logbook import user_cli as logbook_cli
|
|
|
|
from .stats import user_cli as stats_cli
|
|
|
|
|
|
|
|
app.cli.add_command(database_cli)
|
2019-02-25 19:00:51 +00:00
|
|
|
app.cli.add_command(export_cli)
|
2019-02-10 17:39:06 +00:00
|
|
|
app.cli.add_command(flights_cli)
|
2019-02-25 19:00:51 +00:00
|
|
|
app.cli.add_command(gateway_cli)
|
2019-02-10 17:39:06 +00:00
|
|
|
app.cli.add_command(logbook_cli)
|
|
|
|
app.cli.add_command(stats_cli)
|