Files
revng-revng/python/revng/pypeline/cli/rss/__init__.py
Giacomo Vercesi 828bd9c49f pypeline: add remote storage server
Add the PRSS (Pypeline Remote Storage Server) and the relay companion
server.
2026-05-22 09:04:35 +02:00

18 lines
260 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
@click.group(help="RSS protocol group")
def rss():
pass
rss.add_command(server)
rss.add_command(relay)