13 lines
199 B
Python
13 lines
199 B
Python
|
from frappe import _
|
||
|
|
||
|
def get_data():
|
||
|
return [
|
||
|
{
|
||
|
"module_name": "u_utils",
|
||
|
"color": "grey",
|
||
|
"icon": "octicon octicon-file-directory",
|
||
|
"type": "module",
|
||
|
"label": _("u_utils")
|
||
|
}
|
||
|
]
|