Odoo18-Base/odoo/addons/test_http/__manifest__.py
2025-01-06 10:57:38 +07:00

16 lines
400 B
Python

# 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', 'mail'],
'installable': True,
'data': [
'data.xml',
'ir.model.access.csv',
'views.xml'
],
'license': 'LGPL-3',
}