mirror of
https://github.com/NaN-tic/trytond-country_zip.git
synced 2023-12-14 07:42:54 +01:00
17 lines
437 B
Python
Executable file
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')
|