trytond-electronic_mail_filter/__init__.py

15 lines
429 B
Python
Raw Permalink Normal View History

2015-01-23 12:44:40 +01:00
# This file is part of electronic_mail_filter module for Tryton.
# The COPYRIGHT file at the top level of this repository contains the full
# copyright notices and license terms.
from trytond.pool import Pool
from .electronic_mail import *
from .template import *
2015-01-23 12:44:40 +01:00
def register():
Pool.register(
ElectronicMailFilter,
SearchingStart,
Template,
2015-01-23 12:44:40 +01:00
module='electronic_mail_filter', type_='model')