Gitiles
Code Review
Sign In
git.clicks.codes
/
Clicks
/
Forks
/
ERPNext
/
f0ae77b23b8e474f222d50a1f4aeef08b204b0d2
/
.
/
erpnext
/
commands
/
__init__.py
blob: ddf0acc96aec967e1430db102de9da9c578d7361 [
file
] [
log
] [
blame
]
# 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
=
[]