Skip to content

Commit 8de6abe

Browse files
[ADD] real_estate: added real_estate module
Add a new real estate module to handle properties and related features. Made it an application so it can be installed and used easily.
1 parent 781b590 commit 8de6abe

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

estate/__init__.py

Whitespace-only changes.

estate/__manifest__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
'name': "Estate",
3+
'version': '1.0',
4+
'depends': ['base'],
5+
'author': "Asurk",
6+
'category': 'Services',
7+
'description': """
8+
A module so that customers can bid on real estates
9+
""",
10+
'application': True,
11+
'installable': True,
12+
# data files always loaded at installation
13+
14+
}

0 commit comments

Comments
 (0)