trytond-country_zip/__init__.py
2013-03-19 16:29:19 +01:00

17 lines
437 B
Python
Executable file

# -*- encoding: utf-8 -*-
#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.
from trytond.pool import Pool
from .configuration import *
from .country import *
from .address import *
def register():
Pool.register(
Configuration,
Address,
CountryZip,
module='country_zip', type_='model')