mirror of
https://github.com/itsdave-de/msp.git
synced 2025-05-06 15:35:12 +02:00
15 lines
247 B
Python
15 lines
247 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
from frappe import _
|
|
|
|
def get_data():
|
|
return [
|
|
{
|
|
"module_name": "MSP",
|
|
"color": "grey",
|
|
"icon": "octicon octicon-rocket",
|
|
"type": "module",
|
|
"label": _("MSP")
|
|
}
|
|
]
|