trytonpsk-smtp/__init__.py

13 lines
356 B
Python
Raw Normal View History

2020-04-16 15:13:25 +02:00
# This file is part smtp 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 .smtp import (SmtpServer, SmtpServerModel)
def register():
Pool.register(
SmtpServer,
SmtpServerModel,
module='smtp', type_='model')