8 lines
165 B
Python
8 lines
165 B
Python
from trytond.pool import Pool
|
|
from . import product
|
|
|
|
def register():
|
|
Pool.register(
|
|
product.Template,
|
|
module='optical_equipment', type_='model')
|