trytond-galatea_blog-old/__init__.py

16 lines
428 B
Python
Raw Permalink Normal View History

2014-11-07 14:23:55 +01:00
# 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.
2014-05-27 12:17:33 +02:00
from trytond.pool import Pool
2015-02-13 15:18:49 +01:00
from .configuration import *
2014-05-27 12:17:33 +02:00
from .galatea import *
from .blog import *
def register():
Pool.register(
2015-02-13 15:18:49 +01:00
Configuration,
2014-05-27 12:17:33 +02:00
Post,
Comment,
GalateaWebSite,
module='galatea_blog', type_='model')