mirror of
https://github.com/revanced/revanced-static-api.git
synced 2025-04-29 22:24:37 +02:00
15 lines
159 B
Python
15 lines
159 B
Python
import click
|
|
|
|
from commands.generate import generate
|
|
|
|
|
|
@click.group()
|
|
def main():
|
|
pass
|
|
|
|
|
|
main.add_command(generate)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|