mirror of
https://github.com/NaN-tic/trytond-network.git
synced 2023-12-14 04:12:57 +01:00
17 lines
451 B
Python
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')
|