mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-18 21:38:13 -07:00
Usage: flask -A "WebHost:get_app()" stats show Currently only shows sum and top10 biggest games packages.
9 lines
158 B
Python
9 lines
158 B
Python
from flask import Flask
|
|
|
|
|
|
class CLI:
|
|
def __init__(self, app: Flask) -> None:
|
|
from .stats import stats_cli
|
|
|
|
app.cli.add_command(stats_cli)
|