trytonpsk-dash_surveillance/__init__.py

13 lines
346 B
Python
Raw Permalink Normal View History

2021-05-25 20:49:00 +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
2022-06-17 22:57:44 +02:00
from . import surveillance
from . import dash
2021-05-25 20:49:00 +02:00
def register():
Pool.register(
2021-05-25 21:09:25 +02:00
surveillance.AppSurveillanceSchedule,
2021-05-25 20:49:00 +02:00
dash.DashApp,
2021-05-25 21:09:25 +02:00
module='dash_surveillance', type_='model')