From b1adea643f9dcf97b7800c2ac8f427fef6f9eba7 Mon Sep 17 00:00:00 2001 From: vrushibh Date: Fri, 5 Jun 2026 15:43:19 +0530 Subject: [PATCH] [ADD] estate: initialize estate module Add the basic module structure and manifest file for the estate application. --- estate/__init__.py | 0 estate/__manifest__.py | 7 +++++++ 2 files changed, 7 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..473c75d013c --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,7 @@ +{ + "name": "Real Estate", + "depends": ["base"], + "application": True, + "installable": True, + +} \ No newline at end of file