trytond-product_brand_esale/__init__.py

11 lines
279 B
Python
Raw Normal View History

2014-03-12 18:32:01 +01:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-02-02 13:41:42 +01:00
from . import product
2014-03-12 18:32:01 +01:00
def register():
Pool.register(
2018-02-02 13:41:42 +01:00
product.Brand,
module='product_brand_esale', type_='model')