trytond-electronic_mail_wiz.../__init__.py
2012-10-25 13:49:54 +02:00

17 lines
584 B
Python
Executable file

#This file is part electronic_mail_wizard 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_wizard import *
from .template import *
from .action import *
def register():
Pool.register(
TemplateEmailStart,
TemplateEmailResult,
module='electronic_mail_wizard', type_='model')
Pool.register(
GenerateTemplateEmail,
# ExampleGenerateTemplateEmail,
module='electronic_mail_wizard', type_='wizard')