trytonpsk-dash_surveillance/__init__.py

13 lines
346 B
Python

# 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 surveillance
from . import dash
def register():
Pool.register(
surveillance.AppSurveillanceSchedule,
dash.DashApp,
module='dash_surveillance', type_='model')