mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
4f9e811110
Implement the Pypeline Data Viewer, an HTTP server that allows browsing the data stored by PRSS.
20 lines
311 B
Python
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)
|