Odoo18-Base/odoo/addons/test_http/__manifest__.py

16 lines
392 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Test HTTP',
'version': '1.0',
'category': 'Hidden/Tests',
'description': """A module to test HTTP""",
'depends': ['base', 'web', 'web_tour'],
'installable': True,
'data': [
'data.xml',
'ir.model.access.csv',
'views.xml'
],
'license': 'LGPL-3',
}