trytond-nereid_blog/__init__.py

16 lines
369 B
Python
Raw Normal View History

2013-07-10 19:38:31 +02:00
#This file is part nereid_blog 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 .blog import *
def register():
Pool.register(
Category,
Post,
PostCategory,
PostImage,
module='nereid_blog', type_='model')