trytond-asset_zone/__init__.py

13 lines
293 B
Python
Raw Permalink Normal View History

2014-12-23 12:51:59 +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
from .asset import *
def register():
Pool.register(
Zone,
Employee,
Asset,
module='asset_zone', type_='model')