18 lines
297 B
Python
18 lines
297 B
Python
|
# SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
||
|
#
|
||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
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)
|