mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
13 lines
245 B
Python
13 lines
245 B
Python
|
from pathlib import Path
|
||
|
|
||
|
import click
|
||
|
|
||
|
from kiwi_scp.misc import service_command
|
||
|
|
||
|
|
||
|
@click.command()
|
||
|
@service_command
|
||
|
def cmd(project: str, service: str):
|
||
|
project = str(Path(project))
|
||
|
print(f"project: {project!r}, service: {service!r}")
|