9 lines
127 B
Python
9 lines
127 B
Python
import urllib
|
|
import click
|
|
|
|
|
|
@click.command()
|
|
def dlmodel() -> None:
|
|
# Download models [harvest, uvr5, and more ]
|
|
pass
|