Implemented autosort command
This commit is contained in:
parent
c687b244a7
commit
48ba732038
5 changed files with 162 additions and 27 deletions
2
cli
2
cli
|
@ -6,6 +6,7 @@ import sys
|
|||
import sort
|
||||
import importer
|
||||
import serve
|
||||
import autosort
|
||||
|
||||
from helper import build_database_filename, create_dirs
|
||||
from sqlalchemy import create_engine
|
||||
|
@ -38,4 +39,5 @@ if __name__ == '__main__':
|
|||
cli.add_command(sort.command)
|
||||
cli.add_command(importer.command)
|
||||
cli.add_command(serve.command)
|
||||
cli.add_command(autosort.command)
|
||||
cli()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue