brotherton-erpnext/erpnext/commands/__init__.py
Ankush Menat b578dc9978
fix!: drop old broken demo files (#29339)
* fix!: drop old broken demo files

* chore: correct license
2022-01-18 17:43:27 +05:30

11 lines
219 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 = []