trytond-electronic_mail-old/__init__.py

20 lines
564 B
Python
Raw Normal View History

# -*- coding: UTF-8 -*-
2014-03-07 14:38:55 +01:00
# This file is part of electronic_mail module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2012-10-25 13:51:11 +02:00
from trytond.pool import Pool
from .electronic_mail import *
from .configuration import *
2014-09-04 10:16:08 +02:00
from .user import *
2014-03-07 14:38:55 +01:00
2012-10-25 13:51:11 +02:00
def register():
Pool.register(
2014-09-07 01:29:44 +02:00
Mailbox,
2012-10-25 13:51:11 +02:00
ElectronicMail,
ElectronicMailConfiguration,
ElectronicMailConfigurationCompany,
2014-09-04 10:16:08 +02:00
ReadUser,
User,
WriteUser,
2012-10-25 13:51:11 +02:00
module='electronic_mail', type_='model')