2022-01-18 12:13:27 +00:00
|
|
|
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
|
|
|
|
# GPL v3 License. See license.txt
|
2017-06-12 03:48:06 +00:00
|
|
|
|
|
|
|
import click
|
2021-09-02 11:14:59 +00:00
|
|
|
|
2017-06-12 03:48:06 +00:00
|
|
|
|
|
|
|
def call_command(cmd, context):
|
|
|
|
return click.Context(cmd, obj=context).forward(cmd)
|
|
|
|
|
2022-01-18 12:13:27 +00:00
|
|
|
commands = []
|