flectra/flectra/modules/__init__.py

24 lines
590 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
2018-01-16 11:34:37 +01:00
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
""" Modules (also called addons) management.
"""
from . import db, graph, loading, migration, module, registry
2018-01-16 11:34:37 +01:00
from flectra.modules.loading import load_modules, reset_modules_state
2018-01-16 11:34:37 +01:00
from flectra.modules.module import (
adapt_version,
get_module_path,
get_module_resource,
get_modules,
get_modules_with_version,
get_resource_from_path,
get_resource_path,
initialize_sys_path,
load_information_from_description_file,
load_openerp_module,
)