trytond-monitoring/__init__.py
Albert Cervera i Areny 65c0803cf6 initial commit.
2014-07-10 16:15:01 +02:00

20 lines
462 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 .monitoring import *
def register():
Pool.register(
CheckType,
ResultType,
Scheduler,
CheckPlan,
Check,
ResultInteger,
ResultFloat,
ResultChar,
Alert,
AlertItem,
Item,
module='network_monitoring', type_='model')