mirror of
https://github.com/NaN-tic/trytond-electronic_mail_filter.git
synced 2023-12-14 02:42:58 +01:00
13 lines
387 B
Python
13 lines
387 B
Python
|
# 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 *
|
||
|
|
||
|
|
||
|
def register():
|
||
|
Pool.register(
|
||
|
ElectronicMailFilter,
|
||
|
SearchingStart,
|
||
|
module='electronic_mail_filter', type_='model')
|