trytond-network/__init__.py
Albert Cervera i Areny 3dcc844e93 Initial commit.
2014-07-10 16:01:46 +02:00

17 lines
451 B
Python

# 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 .network import *
def register():
Pool.register(
Configuration,
ItemType,
ItemAttribute,
ItemAttributeItemType,
Item,
RelationType,
ItemRelation,
ItemRelationAll,
module='network', type_='model')