trytonpsk_vps/__init__.py

22 lines
610 B
Python

# This file is part of 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 . import configuration
from . import server
from . import supplier
def register():
Pool.register(
configuration.Configuration,
supplier.SupplierVps,
server.Server,
server.Database,
server.PricePlan,
server.DocumentElectronic,
module='vps', type_='model')
Pool.register(
module='vps', type_='wizard')
Pool.register(
module='vps', type_='report')