Files
Giacomo Vercesi 4f9e811110 pypeline: implement Pypeline Data Viewer
Implement the Pypeline Data Viewer, an HTTP server that allows browsing
the data stored by PRSS.
2026-06-17 17:48:13 +02:00

20 lines
311 B
Python

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
import click
from .relay import relay
from .server import server
from .viewer import viewer
@click.group(help="RSS protocol group")
def rss():
pass
rss.add_command(server)
rss.add_command(relay)
rss.add_command(viewer)