Multiple importer and bulksort in the GUI
This commit is contained in:
parent
60cbf9da2e
commit
dfea791bb6
11 changed files with 133 additions and 53 deletions
13
cli
Executable file
13
cli
Executable file
|
@ -0,0 +1,13 @@
|
|||
#! /usr/bin/env python3
|
||||
import click
|
||||
import sort, importer, serve
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
cli.add_command(sort.command)
|
||||
cli.add_command(importer.command)
|
||||
cli.add_command(serve.command)
|
||||
cli()
|
Loading…
Add table
Add a link
Reference in a new issue