backend: initial commit

This commit is contained in:
Davide Scaini
2026-03-28 13:57:12 +01:00
commit 38c5423aeb
36 changed files with 2463 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
"""Top-level CLI entry point: `bincio extract` and `bincio render`."""
import click
from bincio import __version__
@click.group()
@click.version_option(__version__)
def main() -> None:
"""BincioActivity — federated, open-source activity stats."""
from bincio.extract.cli import extract # noqa: E402
from bincio.render.cli import render # noqa: E402
main.add_command(extract)
main.add_command(render)