mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-19 00:52:08 +02:00
13 lines
389 B
Python
13 lines
389 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from ..exceptions import except_orm
|
|
from ..models import Model, TransientModel, AbstractModel
|
|
|
|
# Deprecated, kept for backward compatibility.
|
|
except_osv = except_orm
|
|
|
|
# Deprecated, kept for backward compatibility.
|
|
osv = Model
|
|
osv_memory = TransientModel
|
|
osv_abstract = AbstractModel # ;-)
|