File size: 409 Bytes
7861bff
830d137
feb1b1c
 
830d137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21


from __future__ import annotations

import typer

from redstack.cli.build import build
from redstack.cli.rank import rank
from redstack.cli.validate import validate

__all__: tuple[str, ...] = ("app",)

app = typer.Typer(no_args_is_help=True, add_completion=False)
app.command(name="build")(build)
app.command(name="rank")(rank)
app.command(name="validate")(validate)


if __name__ == "__main__":
    app()