12 lines
190 B
Python
12 lines
190 B
Python
from trytond.pool import Pool
|
|
from . import product
|
|
|
|
|
|
__all__ = ['register']
|
|
|
|
|
|
def register():
|
|
Pool.register(
|
|
product.Product,
|
|
module='optical_equipment', type_='model')
|