mirror of
https://github.com/NaN-tic/trytond-wbs_certification.git
synced 2023-12-14 03:42:52 +01:00
16 lines
444 B
Python
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')
|