feat: Initialize App

This commit is contained in:
pateljannat
2021-02-12 15:10:30 +05:50
commit 994ab1a42c
16 changed files with 229 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from frappe import _
def get_data():
return [
{
"module_name": "Community",
"color": "grey",
"icon": "octicon octicon-file-directory",
"type": "module",
"label": _("Community")
}
]