trytond-wbs_certification/__init__.py
Sergi Almacellas Abellana ece714d87b Implement functionality
2016-03-14 13:23:19 +01:00

16 lines
444 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 .certification import *
from .wbs import *
def register():
Pool.register(
Configuration,
ConfigurationCompany,
Certification,
CertificationLine,
WorkBreakdownStructure,
module='wbs_certification', type_='model')