mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 12:19:12 +00:00
12 lines
290 B
Python
12 lines
290 B
Python
import click
|
|
import frappe
|
|
|
|
|
|
def execute():
|
|
|
|
click.secho(
|
|
"Shopify Integration is moved to a separate app and will be removed from ERPNext in version-14.\n"
|
|
"Please install the app to continue using the integration: https://github.com/frappe/ecommerce_integrations",
|
|
fg="yellow",
|
|
)
|