From 0c47847a430d10c04272ed378e6f52f0cdbc8d63 Mon Sep 17 00:00:00 2001 From: dhruvikalariyaa Date: Fri, 5 Jun 2026 14:12:29 +0530 Subject: [PATCH] [ADD] estate: initialize estate tutorial module create the directory structure and main manifest file for the estate real estate business module. This module will serve as the base for developing the property advertisement and offer management application. --- estate/__init__.py | 0 estate/__manifest__.py | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 estate/__init__.py create mode 100644 estate/__manifest__.py diff --git a/estate/__init__.py b/estate/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/estate/__manifest__.py b/estate/__manifest__.py new file mode 100644 index 00000000000..8bc552b75df --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,6 @@ +{ + "name": "Real Estate", + "depends": ["base"], + "application" : True, + +} \ No newline at end of file