mirror of
https://github.com/Xevion/specs.git
synced 2025-12-06 01:16:24 -06:00
15 lines
257 B
Python
15 lines
257 B
Python
import click
|
|
import cpuinfo
|
|
|
|
from . import log
|
|
|
|
log.info('')
|
|
|
|
@click.group()
|
|
def cli():
|
|
pass
|
|
|
|
@cli.command()
|
|
@clic.option('-c', '--copy', default=False, show_default=True, help='Copy returned specs to the clipboard')
|
|
def run():
|
|
log.info('specs.run') |