cashbook/__init__.py

13 lines
349 B
Python
Raw Normal View History

2022-08-05 08:49:06 +00:00
# -*- coding: utf-8 -*-
2022-08-05 10:02:04 +00:00
# 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.
2022-08-05 08:49:06 +00:00
from trytond.pool import Pool
2022-08-05 10:02:04 +00:00
from .book import Book
2022-08-05 08:49:06 +00:00
def register():
Pool.register(
2022-08-05 10:02:04 +00:00
Book,
2022-08-05 08:49:06 +00:00
module='cashbook', type_='model')