# -*- coding: utf-8 -*- # Repackaged for Fusion Apps by Nexa Systems Inc. (2026) — LGPL-3. # Upstream source: Odoo S.A. `iot_base` module (tag 19.0). No functional # changes — just shared JS utilities used by the `iot` and `iot_drivers` # modules. Kept as a standalone addon so both server and Pi builds # resolve the same import path. { 'name': 'IoT Base', 'version': '19.0.1.0.0', 'category': 'Hidden', 'description': """ Base tools required by all IoT related modules (repackaged for Fusion). """, 'depends': ['web'], 'installable': True, 'author': 'Nexa Systems Inc. (repackaged from Odoo S.A.)', 'license': 'LGPL-3', 'assets': { 'web.assets_backend': [ 'iot_base/static/src/network_utils/*', 'iot_base/static/src/device_controller.js', ], }, }