At present, solution is to put required links in custom app config
i.e. apps/your_app_name/your_app_name/config/your_app_name.py inside that you may put links of any module
from frappe import _
def get_data():
return [
{
"label": _("Anything"),
"items": [
{
"type": "page",
"na": "yourpagename",
},
{
"type": "doctype",
"name": "Role",
},
{
"type": "doctype",
"name": "Sales Invoice",
"description": _("Bills raised to Customers.")
}
]
}]