Multiple importer and bulksort in the GUI

This commit is contained in:
fleaz 2020-03-18 00:22:12 +01:00
parent 60cbf9da2e
commit dfea791bb6
11 changed files with 133 additions and 53 deletions

13
cli Executable file
View 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()