oca-technical/odoo-bringout-oca-rest-framework-base_rest/base_rest/__init__.py
2025-08-29 15:43:03 +02:00

10 lines
309 B
Python

import logging
from . import models
from . import components
from . import http
logging.getLogger(__file__).warning(
"base_rest is deprecated and not fully supported anymore on Odoo 16. "
"Please migrate to the FastAPI migration module. "
"See https://github.com/OCA/rest-framework/pull/291.",
)