trytond-galatea_blog-old/__init__.py

16 lines
428 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 .configuration import *
from .galatea import *
from .blog import *
def register():
Pool.register(
Configuration,
Post,
Comment,
GalateaWebSite,
module='galatea_blog', type_='model')