trytond-project_codereview/__init__.py

12 lines
303 B
Python
Raw Permalink Normal View History

2014-04-28 19:03:33 +02:00
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
2018-01-31 10:53:10 +01:00
from . import work
2014-04-28 19:03:33 +02:00
def register():
Pool.register(
2018-01-31 10:53:10 +01:00
work.ProjectCodeReview,
work.Work,
2014-04-28 19:03:33 +02:00
module='project_codereview', type_='model')