7 lines
177 B
Python
7 lines
177 B
Python
import frappe
|
|
|
|
@frappe.whitelist()
|
|
def install_ssh():
|
|
"""Placeholder for SSH install functionality."""
|
|
return {"success": True, "message": "SSH install endpoint ready"}
|