trytond-country_zip/__init__.py

15 lines
434 B
Python
Raw Normal View History

2018-01-23 17:18:06 +01:00
# This file is part country_zip module for Tryton. The COPYRIGHT file at the
# top level of this repository contains the full copyright notices and license
# terms.
2012-10-09 08:52:39 +02:00
from trytond.pool import Pool
2017-12-12 10:30:52 +01:00
from . import configuration
from . import address
2012-10-09 08:52:39 +02:00
def register():
Pool.register(
2017-12-12 10:30:52 +01:00
configuration.Configuration,
configuration.ConfigurationCountry,
address.Address,
2012-10-09 08:52:39 +02:00
module='country_zip', type_='model')