trytond-account_asset_interval/__init__.py
2016-09-01 11:15:13 +02:00

12 lines
335 B
Python

# This file is part account_asset_interval module for Tryton.
# 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(
Asset,
module='account_asset_interval', type_='model')