13 lines
No EOL
246 B
Python
Executable file
13 lines
No EOL
246 B
Python
Executable file
#! /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() |