cashbook_media/__init__.py

14 lines
356 B
Python
Raw Normal View History

2022-10-14 08:10:29 +00:00
# -*- coding: utf-8 -*-
# This file is part of the cashbook-module from m-ds 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
2022-10-14 13:29:33 +00:00
from .line import Line
2022-10-14 08:10:29 +00:00
2023-06-06 14:46:03 +00:00
2022-10-14 08:10:29 +00:00
def register():
Pool.register(
Line,
2022-10-14 13:29:33 +00:00
module='cashbook_media', type_='model')