10 lines
157 B
Python
10 lines
157 B
Python
"""Executable module for `python -m gradle_mirror.main`."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .cli import app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app()
|