mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
828bd9c49f
Add the PRSS (Pypeline Remote Storage Server) and the relay companion server.
18 lines
260 B
Python
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)
|