trytond-product_brand_esale/__init__.py

12 lines
299 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,
product.Template,
2014-03-12 18:32:01 +01:00
module='product_brand', type_='model')