14 lines
170 B
Python
14 lines
170 B
Python
|
import argparse
|
||
|
|
||
|
from .cli import Cli
|
||
|
|
||
|
|
||
|
def admin(args):
|
||
|
print(args)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
cli = Cli()
|
||
|
opts = cli.parse()
|
||
|
opts.func(opts, c=cli.c)
|