trytond-country_zip/__init__.py

13 lines
366 B
Python
Raw Permalink Normal View History

2012-07-18 11:01:45 +02: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
from .configuration import *
2013-03-19 16:29:19 +01:00
from .address import *
2012-10-09 08:52:39 +02:00
def register():
Pool.register(
Configuration,
2012-10-09 08:52:39 +02:00
Address,
module='country_zip', type_='model')