9 lines
178 B
Python
9 lines
178 B
Python
import argparse
|
|
|
|
from .cmd import setup
|
|
|
|
parser = argparse.ArgumentParser(description="Generate Open API Specification")
|
|
setup(parser)
|
|
args = parser.parse_args()
|
|
args.func(args)
|