trytonpsk-dash_surveillance/__init__.py

13 lines
332 B
Python
Raw 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
2021-05-25 21:09:25 +02:00
import surveillance
2021-05-25 20:49:00 +02:00
import dash
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')