brotherton-erpnext/erpnext/commands/__init__.py
2022-03-28 18:52:46 +05:30

12 lines
220 B
Python

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# GPL v3 License. See license.txt
import click
def call_command(cmd, context):
return click.Context(cmd, obj=context).forward(cmd)
commands = []