trytond-galatea_blog-old/__init__.py
2014-05-27 12:17:33 +02:00

14 lines
374 B
Python

#This file is part galatea_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 .galatea import *
from .blog import *
def register():
Pool.register(
Post,
Comment,
GalateaWebSite,
module='galatea_blog', type_='model')