mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 04:32:01 +02:00
10 lines
309 B
Python
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.",
|
|
)
|