From d8e656e5ac99891cc998c3289b38c3aae2a5d83e Mon Sep 17 00:00:00 2001 From: Ritvik Srivastava Date: Thu, 4 Jun 2026 17:52:53 +0530 Subject: [PATCH] [ADD] estate: add real estate advertisement module structure This module is created as part of the Odoo Server Framework 101 training. The estate module provides a foundation for building a real estate advertisement application, which is not covered by any existing standard Odoo module. --- estate/__init__.py | 0 estate/__manifest__.py | 5 +++++ 2 files changed, 5 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..001f9025b0f --- /dev/null +++ b/estate/__manifest__.py @@ -0,0 +1,5 @@ +{ + 'name': 'Real Estate', + 'depends': ['base'], + 'application': True, +} \ No newline at end of file