14 lines
149 B
Python
14 lines
149 B
Python
"""
|
|
setup or cleanup enviroment file
|
|
usage: rvc env [set / cleanup]
|
|
Default: [nowDir/.env]
|
|
|
|
"""
|
|
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
def env():
|
|
pass
|