trytond-project_name_sequence/__init__.py

13 lines
363 B
Python

# This file is part project_name_sequence module for 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 work
def register():
Pool.register(
work.Configuration,
work.Work,
module='project_name_sequence', type_='model')